-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
executable file
·26 lines (26 loc) · 1.1 KB
/
gallery.html
File metadata and controls
executable file
·26 lines (26 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Free Code Camp Indy - Gallery</title>
<!-- CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- JS -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" charset="utf-8"></script>
<script src="js/myjs.js" charset="utf-8"></script>
<!-- Fonts -->
</head>
<body>
<div class="wrapper">
<nav class="include" data-include="header">
</nav>
<div id="sec1" >
<!-- place your <div class="include" data-include=""></div> here and copy the html into the views folder. Name it something like "page"-"component" -->
</div>
<footer class="include" data-include="footer"></footer>
</div>
</body>
</html>