-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtarget1.html
46 lines (44 loc) · 1.36 KB
/
target1.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Target view</title>
<script type="text/javascript" src="target_view.js"></script>
<link rel="stylesheet" href="target-style.css">
</head>
<body onload="draw(1)">
<header class=main-header>
<h1>Target 1</h1>
</header>
<nav class=navbar>
<ul>
<li class="navbar-item"> <a href="index.html">Home</a> </li>
</ul>
</nav>
<div class="score_board">
<table>
<thead>
<tr class="score-row">
<th class="score-head">1</th>
<th class="score-head">2</th>
<th class="score-head">3</th>
<th class="score-head">4</th>
<th class="score-head">5</th>
<th class="score-head">6</th>
<th class="score-head">Total</th>
</tr>
<tr class="score-row">
<td class="score-point" id=score-1></td>
<td class="score-point" id=score-2></td>
<td class="score-point" id=score-3></td>
<td class="score-point" id=score-4></td>
<td class="score-point" id=score-5></td>
<td class="score-point" id=score-6></td>
<td class="score-point" id=score-total></td>
</tr>
</thead>
</table>
</div>
<canvas id="myCanvas">
</body>
</html>