-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExit.html
More file actions
67 lines (67 loc) · 2.46 KB
/
Exit.html
File metadata and controls
67 lines (67 loc) · 2.46 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
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
<!DOCTYPE html>
<html>
<head>
<title> Exit Page </title>
<meta name="description" content="Page Description Here" />
<meta http-equiv="Content-Type" content="text/html"; charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<table width="100%" height="50" align="center" border="0" cellspacing="3" cellpadding="3" bgcolor="#000000">
<tr>
<td align="left">
<table width="550" border="0" align="center" cellspacing="5" cellpadding="5">
<tr>
<td width="100" align="center"><img src="earth.gif" width="60" height="60"></td>
<td width="100" align="center"><font face="Verdana, Geneva, sens-serif"><h2><a href="About.html" style="color: white;">About</a></h2></font></td>
<td width="100" align="center"><font face="Verdana, Geneva, sens-serif"><h2><a href="Quiz.html" style="color: white;">Quiz</a></h2></font></td>
<td width="100" align="center"><font face="Verdana, Geneva, sens-serif"><h2><a href="Learn.html" style="color: white;">Learn</a></h2></font></td>
<td width="100" align="center"><img src="butterfly.gif" width="90%" height="60"></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div class="wrapper">
<img src="goodbye.gif" width="100%" height="80%">
</div>
<div class="wrapper">
<p align="center"><img src="byebye.gif" width="156" height="156"></p>
<!-- Nagivation Buttons-->
<table width="100%" height="60" align="center" border="0" cellspacing="5" cellpadding="5" bgcolor="#d98cb3">
<tr><td align="left"><button id="topbutton" class="navbuttons">Go to Top</button>
<script>
document.getElementById("topbutton").onclick = function() {
window.scrollTo(0, 0);
};
</script>
</td>
<td align="center"><button id="startbutton" class="navbuttons">Start Quiz</button>
<script>
document.getElementById("startbutton").onclick = function() {
window.location.href = "Quiz.html";
};
</script></td>
<td align="right">
<button id="contactbutton" class="navbuttons">Contact</button>
<script>
document.getElementById("contactbutton").onclick = function() {
window.location.href = "mailto:jelena94milivojevic@outlook.com";
};
</script>
</td>
</tr>
</table>
</div>
<div class="wrapper">
<table width="100%" height="50" border ="0" cellspacing="1" bgcolor="#000000">
<tr>
<td align="center"><em><h4><font color="white">All rights reserved <br>@2023 JM's Web World</font></h4></em></td>
</tr>
</table>
</div>
</body>
</html>