Head
In order to create more consistent experiences, we use the same <head>
block on every page of every application. Our <head>
contains information such as the page title, links to CSS files, links to custom favicons, and other important metadata.
<head>
<meta charset="utf-8">
<title>Enservio Design System | Head</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Slab:300,400,700">
<link rel="stylesheet" href="https://maxcdn.icons8.com/fonts/line-awesome/1.1/css/line-awesome.min.css">
<link rel="stylesheet" href="../../src/css/master.css">
<link rel="stylesheet" href="../../src/css/guide.css">
<!-- favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="../../src/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../src/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="192x192" href="../../src/icons/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../src/icons/favicon-16x16.png">
<link rel="manifest" href="../../src/icons/site.webmanifest">
<link rel="mask-icon" href="../../src/icons/safari-pinned-tab.svg" color="#2e84ed">
<link rel="shortcut icon" href="../../src/icons/favicon.ico">
<meta name="msapplication-TileColor" content="#2e84ed">
<meta name="msapplication-TileImage" content="../../src/icons/mstile-144x144.png">
<meta name="msapplication-config" content="../../src/icons/browserconfig.xml">
<meta name="theme-color" content="#2e84ed">
</head>
Note that the relative urls defined above would need to change based on the relative position of the requesting document.