-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (77 loc) · 2.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/styles/main.css" />
<title>Document</title>
</head>
<body>
<div class="container">
<!-- header -->
<header class="nav ">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="#">Blogs</a></li>
<li><a href="./pages/subscribe.html">Subscribe</a></li>
</ul>
<h1 class="primary-color">Super Blogger Blogs</h1>
</header>
<!-- blog-links -->
<div class="links">
<h2>Links</h2>
<ul class="sidebar-nav">
<li>
<span>Blog one: <a href="pages/hedgehog-blog.html"><strong>Hedgehog</strong></a></span>
</li>
<li>
<span>Blog two: <a href="pages/sugar-glider-blog.html"><strong>Sugar Glider</strong></a></span>
</li>
<li>
<span>Blog three: <a href="pages/mastiff-blog.html"><strong>Mastiff</strong></a></span>
</li>
<li>
<span>Blog four: <a href="pages/mountain-goat-blog.html"><strong>Mountain Goat</strong></a></span>
</li>
</li>
</ul>
</div>
<!-- main -->
<section id="blogs">
<!-- blog-1 -->
<div class="card blog-one">
<div class="blog-text">
<h3 class="primary-color">Hedgehog Blog</h3>
<a href="./pages/hedgehog-blog.html" target="_blank">Continue Reading..</a>
</div>
</div>
<!-- blog-2 -->
<div class="card blog-two">
<div class="blog-text">
<h3 class="primary-color">Sugar Gliders Blog</h3>
<a href="./pages/sugar-glider-blog.html" target="_blank">Continue Reading..</a>
</div>
</div>
<!-- blog-3 -->
<div class="card blog-three">
<div class="blog-text">
<h3 class="primary-color">Mastiff Dog</h3>
<a href="./pages/mastiff-blog.html" target="_blank">Continue Reading..</a>
</div>
</div>
<!-- blog-4 -->
<div class="card blog-four">
<div class="blog-text">
<h3 class="primary-color">Mountain Goat</h3>
<a href="./pages/mountain-goat-blog.html" target="_blank">Continue Reading..</a>
</div>
</div>
</section>
<!-- fotter -->
<footer class="footer">
<h3>Follow me on social media</h3>
<a href="https://wwww.linkedin.com" target="_blank">Linkedin</a>
</footer>
</div>
</body>
</html>