-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·51 lines (48 loc) · 1.11 KB
/
Copy pathindex.html
File metadata and controls
executable file
·51 lines (48 loc) · 1.11 KB
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
<!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">
<title>calculating ratio</title>
<!-- HTML -->
<!-- Custom Styles -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<legend>Progressão Aritmética</legend>
<div class="button-div">
<button onclick="callPrompt()">Calcular</button>
</div>
<div class="main-div">
<div>
<p>Inicia</p>
<p id="start">- - -</p>
</div>
<div>
<p>Até</p>
<p id="until">- - -</p>
</div>
<div>
<p>Razão</p>
<p id="ratio">- - -</p>
</div>
</div>
<table id="clone-here">
<tr>
<th>Progressão</th>
<th class="term-or-count">
<p>Contador</p>
<p>nº</p>
</th>
</tr>
<tr class="clone-this hidden">
<td class="printStart"></td>
<td class="printCount"></td>
</tr>
</table>
</div>
<script src="main.js"></script>
</body>
</html>