-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposts.html
29 lines (25 loc) · 1007 Bytes
/
posts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Koopa Kingdom</title>
<link rel="stylesheet" href="styles.css">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicons/favicon-16x16.png">
<link rel="manifest" href="assets/favicons/site.webmanifest">
</head>
<body class="theme-b-adaptive">
<!-- Main navigation bar -->
<nav aria-label="main-navigation">
<ul class="nav-list">
<li class="nav-item"><a href="index.html">Lorem</a></li>
<li class="nav-item"><a href="index.html">Home</a></li>
<li class="nav-item"><a href="posts.html">Posts</a></li>
<li class="nav-item"><a href="about.html">About</a></li>
</ul>
</nav>
<script src="script.js"></script>
</body>
</html>