-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Count100App</title>
<link
rel="icon"
type="image/png"
href="https://www.google.com/s2/favicons?domain=jacinto.design"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
<!-- <link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/> -->
</head>
<body>
<input type="number" id="buttonsAmount" />
<button id="go" class="startBtn" onclick="go()">Start</button>
<br />
<div class="content">
<div id="btnTemp"></div>
<p id="resultCalc"></p>
</div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>