-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml-graveyard.html
136 lines (135 loc) · 4.47 KB
/
html-graveyard.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!-- HTML OLD AND NEW TO BE ABLE TO CLEAN UP INDEX.HTML, ALSO IN CASE I WANT TO REFERENCE ANYTHING -->
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Magic Eight Ball</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="images/favicon.png" type="image/png" />
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">
You are using an <strong>outdated</strong> browser. Please
<a href="#">upgrade your browser</a> to improve your experience.
</p>
<![endif]-->
<section>
<article class="main-content">
<h1>
Ask the Magic Eight Ball a Question
</h1>
<img
id="eight-ball-img"
src="images/magic-eight-ball-300x300.png"
alt=""
/>
<div id="ask-question-section" class="ask-a-question">
<h2>
Ask Your Question Below
</h2>
<form>
<input
id="question"
type="text"
name="question"
maxlength="50"
size="50"
required
/>
<button
id="submitQuestion"
class="btn"
type="submit"
onclick="clickSubmitQuestion(); return false;"
>
Submit Your Question
</button>
<!-- <button id="askAnother" class="btn" type="reset" onclick="removeAnswer()">Ask Another Question</button> -->
</form>
</div>
<!-- <div id="answer-background"> -->
<!-- <div id="get-your-answer" class="die-down die-up"> -->
<!-- <div id="get-your-answer" class="die-down"> -->
<!-- <p id="answer"></p> -->
<!-- <p class="answer one">
It is<br>certain
</p> -->
<!-- <p class="answer three">
Without<br>a<br>doubt
</p> -->
<!-- <p class="answer five">
You may<br>rely on<br>it
</p> -->
<!-- <p class="answer six">
As I see<br>it<br>yes
</p> -->
<!-- <p class="answer seven">
Most<br>likely
</p> -->
<!-- <p class="answer eight">
Outlook<br>good
</p> -->
<!-- <p class="answer nine">
Yes
</p> -->
<!-- <p class="answer ten">
Signs<br>point to<br>yes
</p> -->
<!-- <p class="answer eleven">
Reply hazy,<br>try<br>again
</p> -->
<!-- <p class="answer twelve">
Ask again<br>later
</p> -->
<!-- <p class="answer thirteen">
Better<br>not tell<br>you<br>now
</p> -->
<!-- <p class="answer fourteen">
Cannot<br>predict<br>now
</p> -->
<!-- <p class="answer fifteen">
Concentrate<br>and ask<br>again
</p> -->
<!-- <p class="answer sixteen">
Don't<br>count<br>on<br>it
</p> -->
<!-- <p class="answer seventeen">
My<br>reply<br>is<br>no
</p> -->
<!-- <p class="answer eighteen">
My<br>sources<br>say<br>no
</p> -->
<!-- <p class="answer nineteen">
Outlook<br>not so<br>good
</p> -->
<!-- </div> -->
<!-- <div class="get-your-answer die-up"> -->
<!-- <p class="answer two">
It is<br>decidedly<br>so
</p> -->
<!-- <p class="answer four">
Yes<br>definitely
</p> -->
<!-- <p class="answer twenty">
Very<br>doubtful
</p> -->
<!-- </div> -->
<!-- <button class="ask-another-question" type="submit">
Ask Another Question
</button> -->
<!-- </div> -->
</article>
</section>
<script src="./main.js"></script>
</body>
</html>