-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (64 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adventure Project</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<header>
<div class="container">
<!-- Navbar -->
<div class="flex">
<div class="logo">
<h4>
Outdoor
<br>
<span>Adventure</span>
</h4>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Service</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
</div>
<!-- Banner section -->
<div class="banner-content">
<h5><em>Explore the colorfull world</em></h5>
<span class="heading-underline"></span>
<h2>A wonder full Gift</h2>
<button>Learn More</button>
</div>
</div>
</header>
<!-- UPCOMING EVENTS Section -->
<section class="events">
<div class="container">
<h1>UPCOMING EVENTS</h1>
<span class="heading-underline"></span>
<div class="flex">
<div class="event-item">
<img src="images/wanderer.jpg" alt="">
<h3>Everest camp trek</h3>
<p>Some text will be go here.This is a section of writing.I like this section.This is a img of a child.</p>
<button>Learn More</button>
</div>
<div class="event-item">
<img src="images/woman.jpg" alt="">
<h3>WALKING HOLIDAYS</h3>
<p>Come text will be go here.This is a section of writing.I like this section.This is a img of a child.</p>
<button>Learn More</button>
</div>
</div>
</div>
</section>
</body>
</html>