-
Notifications
You must be signed in to change notification settings - Fork 0
/
done.html
54 lines (52 loc) · 2.39 KB
/
done.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
<!DOCTYPE html>
<html>
<head>
<script src="./js/side.js"></script>
<title>Newtonian Quiz</title>
<link rel="stylesheet" href="./css/side.css">
<script
src="https://code.jquery.com/jquery-3.1.1.slim.min.js"
integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc="
crossorigin="anonymous">
</script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./js/done.js"></script>
</head>
<body>
<!--- the side nav code... ~ prydt-->
<div id="side" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="https://prydt.github.io/NLoM">Home Page</a>
<a href="https://prydt.github.io/NLoM/about.html">About the Authors</a>
<a href="https://prydt.github.io/NLoM/faq.html">FAQ's</a>
<a href="https://prydt.github.io/NLoM/contact.html">Contact the Founders</a>
</div>
<button onclick="openNav()" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent">
More Info
</button>
<div id="content">
<h1 id="title" class="centered">Newtonian Quiz!</h1>
<h4 id="subtitle" class="centered">Created and Conceived By <a target="_blank"href="https://github.com/PryDt">Pranoy Dutta</a> and <a target="_blank" href="https://github.com/wbne">Ben Wang</a></h4>
<h3 id="txt" class="centered">You are done!</h3>
<form action="mailto:pranoydll@gmail.com" method="post" enctype="text/plain">
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" name="name" id="s1">
<label class="mdl-textfield__label" for="s1">name here</label>
</div>
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" name="mail" id="s2">
<label class="mdl-textfield__label" for="s2">email here</label>
</div>
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" name="comment" id="s3">
<label class="mdl-textfield__label" for="s3">comment?</label>
</div>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
</div>
</body>
</html>