-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (27 loc) · 1.22 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sample HTML</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="This is the description of the sample">
<meta name="author" content="Your peronal or organization name" />
<meta property="og:title" content="Sample HTML"><meta property="og:type" content="Website"><meta property="og:url" content="/" ><meta property="og:image" content="/assets/img/favicon_full.png" >
<meta name="theme-color" content="#FFFFFF" />
<!-- Icons -->
<link rel="shortcut icon" href="/assets/img/favicon.svg">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon-16x16.png">
<link rel="manifest" href="/assets/site.webmanifest">
<!-- Custom CSS -->
<link rel="stylesheet" href="/assets/main.css" />
</head>
<body>
<h1>Hi!</h1>
<p>Sample paragraph</p>
<!-- Scripts -->
<script async defer src="/assets/sample_script.js"></script>
</body>
</html>