-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (26 loc) · 998 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Favicon demo</title>
<style>
.container {color: #474747; font-family: Helvetica, Arial, sans-serif; margin: 1.25em auto; max-width: 40em;}
a {border-bottom: 1px solid #e2e2e2; color: #667f99; text-decoration: none;}
a:hover {border-color: #667f99;}
</style>
<!-- icons -->
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="icon" href="favicon-96x96.png">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5d6938">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="mstile-144x144.png">
</head>
<body>
<div class="container">
<h1>Favicon demo</h1>
<p>Note the favicon in the browser tab or address bar.</p>
<p>see <a href="http://realfavicongenerator.net">http://realfavicongenerator.net</a></p>
</div>
</body>
</html>