-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
62 lines (56 loc) · 3.26 KB
/
gallery.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
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap" rel="stylesheet">
<!--font awesome-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="./public/stylesheets/header.css">
<link rel="stylesheet" href="./public/stylesheets/footer.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js" type="text/javascript" async></script>
<title>South Florida Uncharted</title>
</head>
<body>
<nav id="mainNavbar" class="navbar navbar-light navbar-expand-lg py-0">
<a class="navbar-brand" href="#"><img height="80" src="media/uncharted-logo.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarLinks" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarLinks">
<div class="navbar-nav">
<a class="nav-item nav-link" href="./about.html">About Us</a>
<a class="nav-item nav-link" href="./fishing.html">Fishing Trips</a>
<a class="nav-item nav-link" href="./tours.html">Eco Tours</a>
<a class="nav-item nav-link" href="#">Gallery</a>
<a class="nav-item nav-link" href="./contact.html">Contact Us</a>
</div>
</div>
</nav>
<div class="main-content position-relative">
<div class='embedsocial-instagram' data-ref="749cbe3065843accd334f91b6c579e04097b34a8"></div>
<section id="footer" class="py-4 text-center">
<img height="80" src="media/uncharted-logo.png">
<h5>Let's catch some fish!</h5>
<h5>786-970-8686</h5>
<h5>[email protected]</h5>
<a href="https://www.facebook.com/South-Florida-Uncharted-695389614144741/" style="color: black">
<i class="fab fa-facebook-square mr-3"></i>
</a>
<a href="https://www.instagram.com/southfloridauncharted/" style="color: black">
<i class="fab fa-instagram"></i>
</a>
</section>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-instagram/0.3.1/instagram.min.js"></script>
<script src="gallery.js" type="text/javascript"></script>
</body>
</html>