-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.83 KB
/
index.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
<!DOCTYPE html>
<head>
<!-- Site Metadata -->
<meta charset="UTF-8">
<meta name="author" content="Eric Diehl">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Browser/Tab Title -->
<title>Living Langan</title>
<link rel="icon" href="favicon.png">
<!-- Imports -->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/countdown.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<!-- Menu Bar -->
<div class="w3-top">
<div class="w3-row w3-large w3-light-grey">
<div id="home" class="w3-col s1 menu">
<!-- Includes Home Icon (i tag) -->
<a class="w3-button w3-block"><i class="fa fa-home"></i> Home</a>
</div>
<div id="aboutUs" class="w3-col s2 menu">
<a class="w3-button w3-block">About Us</a>
</div>
<div id="ourStory" class="w3-col s2 menu">
<a class="w3-button w3-block">Our Story</a>
</div>
<div id="weddingDetails" class="w3-col s2 menu">
<a class="w3-button w3-block">Wedding Details</a>
</div>
<div id="gallery" class="w3-col s2 menu">
<a class="w3-button w3-block">Gallery</a>
</div>
<div id="gifts" class="w3-col s2 menu">
<a class="w3-button w3-block">Gifts</a>
</div>
<div id="rsvp" class="w3-col s1 menu">
<a class="w3-button w3-block">RSVP</a>
</div>
</div>
</div>
<!-- Page Content -->
<div class="w3-content"><!-- Dynamic --></div>
<!-- Countdown at the Bottom -->
<div id="countdown"><!-- Dynamic --></div>
</body>
</html>