-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (38 loc) · 1.43 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="./form.css">
<link rel="stylesheet" href="./output.css">
<title>Form Output Number</title>
</head>
<body>
<div id="ana-tag">
<div id="body-tag">
<div id="body-form">
<fieldset>
<h2 id="tag-title"> POİNTS </h2>
<hr>
<form action="#">
<input type="number" name="number1" id="num-1" placeholder="points-1"><br>
<input type="number" name="number2" id="num-2" placeholder="points-2"><br>
<input type="number" name="number3" id="num-3" placeholder="points-3"><br>
</form>
<button id="calculate-points" onclick="calculates()"> Calculate </button>
</fieldset>
</div>
<div id="body-output">
<ul>
<li id="points">Points:</li>
<li id="averagePoints">Average Points:</li>
<li id="totalPoints"> Total Points :</li>
</ul>
</div>
</div>
</div>
<script src="./index.js"></script>
</body>
</html>