-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (58 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>FED Exercise 1</title>
<meta
content="width=device-width, initial-scale=1, maximum-scale=1"
name="viewport"
/>
<link rel="stylesheet" href="css/my-style.css">
</head>
<body>
<section>
<div class="topgrid">
<header>
<div class="navbar">
<h1>Basic Blog Project</h1>
</div>
</header>
<div class="content">
<div class="postcard logo">
<figure>
<img class="logoimg" src="images/Dog_01.jpg" alt="My Dog Avatar">
<figcaption>Doolie</figcaption>
</figure>
<h2>The Doghouse</h2>
</div>
<div class="postcard emphasize">
<h2>Blog Post 1</h2><p>January 1st, 2020</p>
<h3>This is my first post!</h3>
<a href="blogpost/blog-post.html">Continue reading ...</a>
</div>
<div class="postcard emphasize">
<h2>Blog Post 2</h2>
<p>January 2nd, 2020</p>
<h3>This is my 2nd post ...</h3>
<a href="blogpost/blog-post.html">Continue reading ...</a>
</div>
<div class="postcard emphasize">
<h2>Blog Post 3</h2>
<p>January 3rd, 2020</p>
<h3>This is my 3rd post ...</h3>
<a href="blogpost/blog-post.html">Continue reading ...</a>
</div>
<div class="postcard emphasize">
<h2>Blog Post 4</h2>
<p>January 3rd, 2020</p>
<h3>This is my 4th post ...</h3>
<a href="blogpost/blog-post.html">Continue reading ...</a>
</div>
</div>
<footer>
<div class="footer"><button class="subscribe" onclick="window.location.href='subscribe/sub-main.html'">Subscribe</button></div>
</footer>
</div>
</section>
</body>
</html>