forked from Montana-Code-School/javascriptVacation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.12 KB
/
index.html
File metadata and controls
38 lines (37 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript DOM Manipulation Practice</title>
<link rel="stylesheet" href="styles.css" >
<script src="https://use.fontawesome.com/b4ccb25300.js"></script>
</head>
<body>
<div class="container">
<div class="headtext">
<h1>Vacation Destinations of the World</h1>
<button class="scam" type="button">CLICK HERE</button>
<i class="fa fa-bars fa-2x menu"></i>
<h2><i class="fa fa-arrows-v"></i> Useful Links</h2>
<a href="#">Vacation Planning</a>
<a href="#">Snorkeling</a>
<a href="#">Excursions</a>
<a href="#">Deep Sea Fishing</a>
<a href="#">Cave Tours</a>
</div>
<div class="linkbox">
<i class="fa fa-arrow-left fa-3x"></i>
<div class="box">
<img src="images/cancun.jpg" />
</div>
<div class="box">
<img src="images/hawaii-art.jpg" />
</div>
<div class="box">
<img src="images/nyc.jpeg" />
</div>
<i class="fa fa-arrow-right fa-3x"></i>
</div>
</div>
</body>
</html>