-
Notifications
You must be signed in to change notification settings - Fork 0
/
third.html
90 lines (84 loc) · 4.4 KB
/
third.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
90
<!DOCTYPE html>
<html lang="en">
<title>[JustinFurstoss]TestApp</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<style>
body {
font-family: "Helvetica Neue";
}
</style>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-white w3-card">
<a class="w3-bar-item w3-button w3-padding-large w3-hide-medium w3-hide-large w3-right"
href="javascript:void(0)" onclick="myFunction()" title="Toggle Navigation Menu"><i
class="fa fa-bars"></i></a>
<a href="index.html" class="w3-bar-item w3-button w3-padding-large">[JUSTINFURSTOSS]TestApp</a>
<a href="index.html" class="w3-bar-item w3-button w3-padding-large w3-hide-small">HOME</a>
<div class="w3-dropdown-hover w3-hide-small">
<button class="w3-padding-large w3-button" title="Sections">
SECTIONS<i class="fa fa-caret-down"></i>
</button>
<div class="w3-dropdown-content w3-bar-block w3-card-4">
<a href="first.html" class="w3-bar-item w3-button">FIRST</a>
<a href="second.html" class="w3-bar-item w3-button">SECOND</a>
<a href="third.html" class="w3-bar-item w3-button">THIRD</a>
</div>
</div>
</div>
</div>
<!-- Navbar on small screens (remove the onclick attribute if you want the navbar to always show on top of the content when clicking on the links) -->
<div id="navigation" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium w3-top"
style="margin-top:46px">
<a href="index.html" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">HOME</a>
<a href="first.html" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">FIRST</a>
<a href="second.html" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">SECOND</a>
<a href="third.html" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">THIRD</a>
</div>
<div class="w3-container w3-content w3-center w3-padding-64" style="max-width:800px" id="about"></div>
<!-- Page content -->
<div class="w3-content" style="max-width:2000px;margin-top:46px">
<!-- LOGO -->
<div class=" w3-display-container w3-center">
<img src="gifs/thank-you.gif" style="height:80vmin; width:90vmin" />
<div class="w3-display-bottommiddle w3-container w3-padding-32 w3-hide-small"></div>
<!-- Contact Form -->
<!-- <form id="phoneNumberForm">
<div class="w3-content" style="max-width:2000px;margin-top:46px">
<input type="phoneNumber" placeholder="Phone Number"
style="background-color:white; border-radius: 8px; border-width: 1px; padding: 14px 40px; color:grey; border-style: solid;"
id="cphoneNumber" required>
</div>
<div class="w3-button">
<button id="submitPhoneNumber" type="submit" class="w3-wide"
style="background-color:#4da4dc; border-radius: 8px; padding: 14px 40px; color:white;">TEXT ME
THE APP!</button>
</div>
</form> -->
<!-- end of contact form -->
</div>
<script>
// Used to toggle the menu on small screens when clicking on the menu button
function myFunction() {
var x = document.getElementById("navigation");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
// When the user clicks anywhere outside of the modal, close it
var modal = document.getElementById("ticketModal");
window.onclick = function (event) {
if (event.target == modal) {
modal.style.display = "none";
}
};
</script>
</body>
</html>