-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquoteTest.html
43 lines (38 loc) · 1.41 KB
/
quoteTest.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Quote Test</title>
<link rel="stylesheet" href="./style/index.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="./images/logo.png">
</head>
<body>
<div class="border-box quoteBox">
<h1>Quote Test</h1>
<button class="backButton">← Go Back</button>
Quotes will be listed below.
<div id="timer"></div>
<div id="quoteResults"></div>
<div id="quoteList">
</div>
<button class="submitButton">Submit Quote Test</button>
</div>
<script src="./script/quoteHandle.js"></script>
<div class="footer">
<p><a href="https://arisamiga.rocks/copyright">©</a> 2025 <a href="https://github.com/arisamiga/quote-test/">Quote Test</a></p>
</div>
<div id="popup" class="popup">
<div id="popupContent" class="popupContent">
<span id="closePopup" class="close">×</span>
<h3 id="popupTitle" class="popupTitle">Information</h3>
<p id="popupText" class="popupText">Fallback! Something has gone wrong...</p>
<div class="popupOptions">
<div id="button1" class="button1">1</div>
<div id="button2" class="button2">2</div>
<div id="button3" class="button3">3</div>
</div>
</div>
</div>
</body>
</html>