forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (83 loc) · 3.31 KB
/
index.html
File metadata and controls
92 lines (83 loc) · 3.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header class="header">
<div class="content">
<div class="navbar">
<img class="adventurelogo" src="/images/adventurelogo.svg.svg" alt="Adventure logo">
<nav>
<ul class="navbar">
<li><a href="#">Home</a></li>
<li><a href="#explore">Explore</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
<section class="homepage-content">
<h1>Discover <br>the <span>world</span></h1>
<p class="tagline">"Blessed are the curious for they shall have adventure." <br> Lovelle Drachman</p>
<button class="heroexplore">Explore</button>
</div>
</section>
</header>
<main>
<h2 id="explore" class="explore">Explore</h2>
<section class="articlesection">
<article class="blogitem">
<img src="/images/getready.jpg.jpg" alt="Image of map and traveling passport and sunglasses">
<h3>1 Get Ready</h3>
<p> Lorem ipsum dolor sit amet consectetur adipisicing elit.
Debitis iure perspiciatis molestias
possimus similique voluptatibus praesentium atque quae numquam rem
suscipit error veritatis labore doloribus quasi,
magni nisi optio repellat.</p>
</article>
<article class="blogitem">
<img src="/images/discover.jpg.jpg" alt="A woman leaning on a car with her foot on a traveling suitcase">
<h3>2 Discover</h3>
<p> Lorem ipsum dolor sit amet consectetur adipisicing elit.
Debitis iure perspiciatis molestias
possimus similique voluptatibus praesentium atque quae numquam rem
suscipit error veritatis labore doloribus quasi,
magni nisi optio repellat</p>
</article>
<article class="blogitem">
<img src="/images/meetpeople.jpg.jpg" alt="People gathering to take a photo with cellphone">
<h3>3 Meet People</h3>
<p> Lorem ipsum dolor sit amet consectetur adipisicing elit.
Debitis iure perspiciatis molestias
possimus similique voluptatibus praesentium atque quae numquam rem
suscipit error veritatis labore doloribus quasi,
magni nisi optio repellat</p>
</article>
</section>
</main>
<footer>
<h2 id="contact" class="contact">Contact</h2>
<div class="footercontacts">
<ul >
<li class="email">[email protected]</li>
<li class="contact-number">0800 5342</li>
</ul>
<img class="logoicon" src="/images/logoicon.svg" alt="company logo">
</div>
</footer>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
</body>
</html>