-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
158 lines (155 loc) · 4.4 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport" />
<title>
Hiltz Blog Site
</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<h1>
Hiltz Kitty Blog
</h1>
<h2>
Here are <u>some</u> <b>fun</b> cat <i>pictures</i> to look at.
<blockquote>
Get ready for fun!
</blockquote>
</h2>
</header>
<div class="nav-container">
<a class="nav-content" href="index.html">Home</a>
<a class="nav-content" href="nav/about.html">Author Info</a>
<a class="nav-content" href="nav/contact.html">Contact</a>
</div>
<div class="blog-preview-grid">
<!-- blog 1 -->
<div class="blog-flex-preview box">
<figure>
<img src="images/Both1.jpg" alt="Daryl and Rumbles" class="blog-pic">
<figcaption>CATS!</figcaption>
</figure>
<p class="blog-pic-text">
Best buds
</p>
<a href="blogs/blog1.html" class="buttontext button">
Go to Blog
</a>
</div>
<!-- blog 2 -->
<div class="blog-flex-preview box">
<figure>
<img src="images/Rumbles1.jpg" alt="Rumbles" class="blog-pic">
<figcaption>CATS!</figcaption>
</figure>
<p class="blog-pic-text">
So fierce
</p>
<a href="blogs/blog2.html" class="buttontext button">
Go to Blog
</a>
</div>
<!-- blog 3 -->
<div class="blog-flex-preview box">
<figure>
<img src="images/Daryl1.jpg" alt="Daryl" class="blog-pic">
<figcaption>CATS!</figcaption>
</figure>
<p class="blog-pic-text">
Daryl is confused
</p>
<a href="blogs/blog3.html" class="buttontext button">
Go to Blog
</a>
</div>
<!-- blog 4 -->
<div class="blog-flex-preview box">
<figure>
<img src="images/Both2.jpg" alt="Daryl and Rumbles" class="blog-pic">
<figcaption>CATS!</figcaption>
</figure>
<p class="blog-pic-text">
Daryl protecting Rumbles
</p>
<a href="blogs/blog4.html" class="buttontext button">
Go to Blog
</a>
</div>
<!-- blog 5 -->
<div class="blog-flex-preview box">
<figure>
<img src="images/Rumbles2.jpg" alt="Rumbles" class="blog-pic">
<figcaption>CATS!</figcaption>
</figure>
<p class="blog-pic-text">
Scary Rumbles
</p>
<a href="blogs/blog5.html" class="buttontext button">
Go to Blog
</a>
</div>
<!-- blog 6 -->
<div class="blog-flex-preview box">
<figure>
<img src="images/Daryl2.jpg" alt="Daryl" class="blog-pic">
<figcaption>CATS!</figcaption>
</figure>
<p class="blog-pic-text">
Pst... Here's a blep for ya
</p>
<a href="blogs/blog6.html" class="buttontext button">
Go to Blog
</a>
</div>
<!-- blog 7 -->
<div class="blog-flex-preview box">
<figure>
<img src="images/Both3.jpg" alt="Daryl and Rumbles" class="blog-pic">
<figcaption>CATS!</figcaption>
</figure>
<p class="blog-pic-text">
Protectors of the realm
</p>
<a href="blogs/blog7.html" class="buttontext button">
Go to Blog
</a>
</div>
<!-- blog 8 -->
<div class="blog-flex-preview box">
<figure>
<img src="images/Rumbles3.jpg" alt="Rumbles" class="blog-pic">
<figcaption>CATS!</figcaption>
</figure>
<p class="blog-pic-text">
Lookin sharp Rumbles
</p>
<a href="blogs/blog8.html" class="buttontext button">
Go to Blog
</a>
</div>
<!-- blog 9 -->
<div class="blog-flex-preview box">
<figure>
<img src="images/Daryl3.jpg" alt="Daryl" class="blog-pic">
<figcaption>CATS!</figcaption>
</figure>
<p class="blog-pic-text">
Daryl is such a proud kitty
</p>
<a href="blogs/blog9.html" class="buttontext button">
Go to Blog
</a>
</div>
</div>
<footer>
<h3>
Updated 2020
</h3>
</footer>
</div>
</body>
</html>