Skip to content

Commit 0fe1d66

Browse files
authored
Update index.html
1 parent 86d15b3 commit 0fe1d66

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

index.html

+40
Original file line numberDiff line numberDiff line change
@@ -1 +1,41 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Complex Question Site</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
}
11+
.question-container {
12+
margin: 20px;
13+
}
14+
.options-container {
15+
margin: 20px 0;
16+
}
17+
.option {
18+
margin: 10px 0;
19+
}
20+
.result-container {
21+
margin: 20px 0;
22+
display: none;
23+
}
24+
</style>
25+
</head>
26+
<body>
27+
<div class="question-container">
28+
<h1 id="question"></h1>
29+
<div class="options-container" id="options-container"></div>
30+
<button id="submit-btn">Submit</button>
31+
</div>
32+
<div class="result-container" id="result-container">
33+
<h2>Result</h2>
34+
<p id="result"></p>
35+
</div>
36+
37+
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
38+
<script src="script.js"></script>
39+
</body>
40+
</html>
141

0 commit comments

Comments
 (0)