-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (34 loc) · 1.23 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Index</title>
<link rel="shortcut icon" type="png" href="images/favicon.ico" />
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
<meta content="utf-8" http-equiv="encoding" />
<link rel="stylesheet" href="styles/index.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
.hidden {
display: none;
}
</style>
</head>
<body style="background-color: black">
<div class="topimage">
<img class="smileimage" src="images/marcusAureliusQuote.jpg" />
</div>
<div style="min-height: 30vh"></div>
<div class="question-container">
<div id="question1">
<p style="color:white" id="questionText"></p>
<!-- <form action="pages/smiley.html"> -->
<button class="btn buttonGreen" onclick="clickYes()">Yes</button>
<button class="btn buttonRed" onclick="clickNo()">No</button>
<!-- </form> -->
</div>
<div id="finalMessage" style="color: white; text-align: center">
</div>
</div>
<script src="scripts/index.js"></script>
</body>
</html>