-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutUs.html
89 lines (81 loc) · 3.26 KB
/
AboutUs.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>
<head>
<title> About Us </title>
<link href='https://fonts.googleapis.com/css?family=Roboto+Mono' rel='stylesheet' type='text/css'>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="bootstrap-3.3.7-dist/css/bootstrap.css">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="aboutus.css" type="text/css">
</head>
<body>
<header>
<ul>
<li><a href="AboutUs.html" title="About Us">ABOUT US</a></li>
<li class='home'><a href="index.html" title="Home">HOME</a></li>
<li><a href="destinations.html" title="Destinations" alt="Destinations">DESTINATIONS</a></li>
</ul>
</header>
<div class= "container">
<div class="row">
<div class="col-md-4">
<figure>
<img class=person src="https://i.imgur.com/RxGaNOl.jpg?1" >
<figcaption>
<strong>Kat</strong><br>Loves: Getting to know the locals <br>Hates: Tourist traps
</figcaption>
<img class=splatter src="https://i.imgur.com/LhtbZLN.png">
</figure>
</div>
<div class="col-md-4">
<figure>
<img class=person src="Kaylee.jpg" >
<figcaption>
<strong>Kaylee</strong><br>Loves: Seeing new landscapes <br>Hates: Busy places
</figcaption>
<img class=splatter src="https://i.imgur.com/WIMSgtK.png">
</figure>
</div>
<div class="col-md-4">
<figure>
<img class=person src="https://i.imgur.com/5Gn4LQm.jpg" >
<figcaption>
<strong>Kathryn</strong><br>Loves: Trying local food (as long as it isn't too spicy) <br>Hates: Top bunk of a bunk bed
</figcaption>
<img class=splatter src="https://i.imgur.com/LhtbZLN.png">
</figure>
</div>
</div>
</div>
<div class="contact-form">
<p>We'd love to hear about your travels, so feel free to send us in your own submissions so that we can keep growing the website!</p>
<form class="form-horizontal" action="/action_page.php">
<div class="form-group">
<label class="control-label col-sm-2" for="email">Email:</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="email" placeholder="Enter email">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="text">Submission:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="pwd" placeholder="Leave your submission here">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</div>
</form>
</div>
</body>
<footer>
<a href="#"> <img src="https://imgur.com/FJV2xjM.png" title="Facebook" width=30 height=30> </a>
<a href="#"> <img src="https://imgur.com/UqFc2Yy.png" title="Instagram" width=30 height=30> </a>
<a href="#"> <img src="https://imgur.com/R9vd7ZF.png" title="Twitter" width=30 height=30> </a>
</footer>
</html>