-
Notifications
You must be signed in to change notification settings - Fork 0
/
debate.html
29 lines (29 loc) · 1.11 KB
/
debate.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Debate results</title>
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet'>
<link rel="stylesheet" href="debatestyle.css" type="text/css">
</head>
<body>
<div class="main-container">
<h1>Teens' Debate</h1>
<p>The teens in RCCG Continuing Grace Parish participated in a debate where Marv was one of the judges.</p>
<p>However, this webpage only shows the evaluations and ratings of Marv only.</p>
<p>Click the buttons to find out each group's scores</p>
<div class='button-container-1'>
<button class='btn-1'>Group 1 average score</button>
<div class='answer-1'></div>
<button class='btn-2'>Group 2 average score</button>
<div class='answer-2'></div>
</div>
<div class='button-container-2'>
<button class='btn-3' href='#'>Reveal winner</button>
</div>
<div class='final-result'></div>
</div>
</body>
<script src="debatecode.js"></script>
</html>