-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathage10_14q3.html
90 lines (90 loc) · 2.86 KB
/
age10_14q3.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
<!DOCTYPE html>
<html>
<head>
<title>Quiz 1</title>
<style>
body{
color:rgb(83, 43, 226) ;
background-color: rgb(80, 255, 188);
font-size: medium;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
}
nav ul{
background-color:rgb(83, 43, 226) ;
color:white;
border-style: solid;
border-color:rgb(83, 43, 226);
border-width: 2px;
padding: 10px;
border-radius: 10px;
}
nav ul li{
list-style-type: none;
display: inline;
margin-right: 10px;
margin-left: 10px;
color: white;
}
nav ul li a{
text-decoration: none;
color: white;
}
.button > a{
text-decoration: none;
color: rgb(80, 255, 188);
}
.button{
background-color: rgb(83,43,226);
color: rgb(80, 255, 188);
padding: 10px;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="./index.html">About me</a></li>
<li><a href="./how_to_play.html">How to play chess</a></li>
<li><a href="./login.html">Login</a></li>
<li><a href="./resgristation.html">Registration</a></li>
<li><a href="./quiz.html">Quiz</a></li>
<li><a href="./mathquiz.html">Math Quiz</a></li>
<li><a href="./mountain_lion.html">Mountain Lion</a></li>
<li><a href = "./feedback.html">Feedback</a></li>
</ul>
</nav>
</header>
<form>
<h1>4th grade to 8th grade questions.</h1>
<h2>3. What is 3/4 + 1/5</h2>
<label for = "8">
3/20
<input type="radio" id="8" name ="callTime"/>
<br>
<br>
</label>
<label>
11/20
<input type="radio" id="8" name ="callTime"/>
<br>
<br>
</label>
<label>
4/20
<input type="radio" id="8" name ="callTime"/>
<br>
<br>
</label>
<label>
5/20
<input type="radio" id="8" name ="callTime"/>
</label>
<br>
<br>
<button type="submit" id="button1" name="button1" class="button"><a href="age10_14q2.html">Previous</a></button>
<button type="submit" id="button2" name="button2" class="button"><a href="age10_14q4.html">Next</a></button>
</form>
</body>
</html