-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopcorn_challenge.html
46 lines (45 loc) · 1.79 KB
/
popcorn_challenge.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Airlines!!</title>
<link rel="stylesheet" href="./popcorn_challenge_style.css">
<section class="head">
<!--Main Title of the webpage-->
<h1>Puerto Rico Airlines</h1>
<!--Navigation menu with buttons-->
<div class="nav-button-group">
<button>Home</button>
<button>Flights</button>
<button>Support</button>
<button>Login</button>
</div>
</section>
</head>
<body>
<!--flight subcategory with button-->
<div class = "flights">
<h2>Flights</h2>
<p>Come check out our sweet flights!</p>
<p>Direct flights available daily!</p>
<button>Lets go</button>
</div>
<!--group rate subcategory with button-->
<div class = "group-trips">
<h2>Group Trips</h2>
<p>We offer great group rates! For families with 4 members to huge gatherings with 50+!</p>
<button>Group Rates</button>
</div>
<!--discount flights subcategory with button-->
<div class = "discount-flights">
<h2>Discount Flights</h2>
<p>Discount flights available for individuals! Single chair filler tickes for low rates!</p>
<button>Jump in</button>
</div>
<div class = "about-us">
<h2>About us</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipsicing elit, sed do eiusmod tempor incidicunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exrecitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute inure dolor in reprehenderit in voluptate velit ese cilium dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<button>Learn More</button>
</div>
</body>
</html>