-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion.html
43 lines (43 loc) · 2.06 KB
/
question.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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Princess Quiz App Question Screen Wireframe</title>
<meta name="description" content="grey box wireframe for Disney princess quiz app question screen"/>
</head>
<body style="box-sizing: border-box; padding: 50px 80px;">
<main style="box-sizing: border-box; margin: auto; border: 2px solid black; padding: 30px; text-align: center; word-wrap: break-word;">
<h1 style= "margin: 20px auto 15px;">Question</h1>
<p>4 out of 15</p>
<p style="margin: 35px auto">Lorem ipsum lorem ipsum lorem?</p>
<section style= "margin: auto; padding: 10px 30px;">
<div style = "display: inline-block;">
<p style="height: 10px">INCORRECT!</p>
<button style= "padding: 20px; font-size: 15px; margin: 0 20px 20px; width: 100px; background: red;">A</button>
</div>
<div style="display: inline-block;">
<p style="height: 10px"></p>
<button style= "padding: 20px; font-size: 15px; margin: 0 20px 20px; width: 100px;">B</button>
</div>
<div style="display: inline-block;">
<p style="height: 10px">CORRECT!</p>
<button style= "padding: 20px; font-size: 15px; margin: 0 20px 20px; width: 100px; background: green;">C</button>
</div>
<div style="display: inline-block;">
<p style="height: 10px"></p>
<button style= "padding: 20px; font-size: 15px; margin: 0 20px 20px; width: 100px;">D</button>
</div>
</section>
<section>
<section style = "justify-content: space-evenly;">
<p>Score: 5 out of 15</p>
</section>
<section>
<button style="margin: 25px; padding: 10px 50px;">Next</button>
</section>
</section>
</main>
</body>
</html>