-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (89 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travel Blog</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>My Travel Blog</h1>
<nav>
<ul>
<li>
<a href="#">All Posts</a>
</li>
<li>
<a href="#">Contact Me</a>
</li>
</ul>
</nav>
</header>
<main>
<section>
<img
src="./images/rana-sawalha-unsplash.jpg"
alt="Image of travel items."
/>
<article>
<h2>What I Bring on My Travels</h2>
<p>
There are so many different ways to travel. From jumping in your car
and just going to taking months to meticulously plan the perfect
trip, everyone has their favorite recipe for a life-changing
vacation. It's taken some time, but I feel like I finally have the
perfect list of what to bring on all of my excursions.
</p>
<aside>
<p>
<span><strong>Read Time:</strong> 4 Minutes</span
><a href="#">Read more...</a>
</p>
</aside>
</article>
</section>
<section class="posts">
<article>
<img
src="./images/jake-blucker-unsplash.jpg"
alt="Image of a winding road."
/>
<h3>Games to Play on the Road</h3>
<p>
Traveling with others is always better than traveling along, in my
opinion. I don't mind the quiet, but sometimes it's nice to have a
few activities to keep our minds entertained while driving.
</p>
<aside>
<p>
<span><strong>Read Time:</strong> 6 Minutes</span
><a href="#">Read more...</a>
</p>
</aside>
</article>
<article>
<img
src="./images/andre-benz-unsplash.jpg"
alt="Image of buildings on the coast."
/>
<h3>Take in the Architecture</h3>
<p>
It's easy to run from place to place when in a new country. I'm
guilty of rushing to the nearest museum as soon as I land! But,
lately I've found solace in just walking around a new city and
enjoying the architecture...
</p>
<aside>
<p>
<span><strong>Read Time:</strong> 3 Minutes</span
><a href="#">Read more...</a>
</p>
</aside>
</article>
</section>
</main>
<footer>© 2021 Travel Blog, LLC.</footer>
</body>
</html>