-
Notifications
You must be signed in to change notification settings - Fork 14
/
contact.html
executable file
·30 lines (29 loc) · 1.32 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Free Code Camp Indy - Contact</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://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.2/lodash.min.js"></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">
<div class="include" data-include="contact-reports"></div>
<!-- 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>
<div class="include" data-include="google-analytics"></div>
</body>
</html>