-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmitted.html
More file actions
68 lines (52 loc) · 2.1 KB
/
submitted.html
File metadata and controls
68 lines (52 loc) · 2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Code Cafe</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/custom.css">
<!-- Scripts
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<style>
html, body {
background: #006699;
}
</style>
<div class="videoBody">
<div class="imageHeader">
<img height="60" src="images/ieee.png"> <div>Purdue</div>
</div>
<div class="mainContent">
<h1>Thank you!</h1>
We will send you an email about your acceptance in February!
<br>
<br>
<img height="50" src="images/coffee.png">
<br>
<br>
<button id="return" onClick="returnPage()">Return to Home</button>
<div class="description">
</div>
</div>
<div class="footer">IEEE - Purdue - 2015</div>
</div>
<script type="application/javascript">
function returnPage() {
window.location.href = "index.html";
}
</script>
</body>
</html>