-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 loc) · 1.28 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width"> <!-- allows reactive site features in CSS -->
<meta name="description" content="Blog">
<meta name="keywords" content="Blog ">
<title>Blog</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div class="container">
<a href="yoursite.com">
<div id="branding">
<img src="./img/sitelogo.png" alt="site logo" >
<h1>Your Sitename</h1>
</div>
</a>
<nav>
<ul>
<li class="current"><a href="#BlogHome">Blog Home</a></li>
</ul>
</nav>
</div>
</header>
<section>
<div class="container">
<!-- This UL contains the list of blog entries, and is updated automatically by the script. -->
<ul id="bloglist">
<li>2018-04-06 :: <a href="yourblog.html">The First Blog Ever</a></li>
</ul>
</div>
</section>
<footer>
<section id="update_details">
<div id="update_string">Last updated on Friday, April 06 2018, at 08:48 PM, U.S. Mountain Time</div>
</section>
<p>My Website, Copyright 2018</p>
<!-- Global site tag (gtag.js) - Google Analytics -->
</script>
</footer>
</body>
</html>