-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
36 lines (36 loc) · 991 Bytes
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css2?family=Metal+Mania&family=Teko:wght@300;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Coach Blog</title>
</head>
<body>
<nav class="navbar">
<h2 class="logo"><a href="#">Coach<span>.</span></a></h2>
<ul>
<li class="item item-1">
<a href="index.html">Home</a>
</li>
<li class="item item-2">
<a href="#">Pages</a>
</li>
<li class="item item-3">
<a href="blog.html">Blog</a>
</li>
<li class="item item-4">
<a href="#">Resources</a>
</li>
<li class="item item-5">
<a href="#">Docs</a>
</li>
<li class="item item-6">
<a href="#">Sign up</a>
</li>
</ul>
</nav>
</body>
</html>