-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (44 loc) · 1.56 KB
/
index.html
File metadata and controls
54 lines (44 loc) · 1.56 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bare Bones Layout</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="page's description">
<meta name="author" content="Your site name">
<!-- Open Graph Protocol -->
<!--
<meta property="og:title" content="A brief title">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.yoursite.com">
<meta property="og:description" content="A brief description">
<meta property="og:image" content="image.png">
-->
<!--
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
-->
<!-- Include your CSS files here -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<!-- Add your website name or logo here -->
<p>Header </p>
</header>
<nav>
<!-- Add your website navigation here -->
</nav>
<main>
<!-- Add your main content here -->
<h1>Heading</h1>
</main>
<footer>
<!-- Add copyright notices and other footer content here -->
<p>Footer</p>
</footer>
<!-- Include your Javascript files here -->
<script src="js/script.js"></script>
</body>
</html>