-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 910 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Apnea overlay</title>
<link rel="stylesheet" href="css/style.css">
<link rel="javascript" href="js/index.js">
</head>
<body>
<section>
<div class="contestant-container-row">
<div class="contestant-container-col-header">First Name</div>
<div class="contestant-container-col-header">Last Name</div>
<div class="contestant-container-col-header">Country</div>
<div class="contestant-container-col-header">PB</div>
</div>
<div class="contestant-container-row">
<div class="contestant-container-col">John</div>
<div class="contestant-container-col">Doe</div>
<div class="contestant-container-col"><img src="img/flags/no.png" width="27px" height="18px" alt="Norway"></div>
<div class="contestant-container-col">120 m</div>
</div>
</section>
</body>
</html>