-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (38 loc) · 1.5 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="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- bootstrap -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<!-- js import -->
<script src="script.js"></script>
<!-- font awesome -->
<script src="https://kit.fontawesome.com/60228476dc.js" crossorigin="anonymous"></script>
<!-- style -->
<link rel="stylesheet" href="assets/style/style.css">
<title>Let's Count - Simple counting JS website with emoji</title>
</head>
<body></body>
<header>
<h1>Let's Count</h1>
</header>
<section>
<div id="data">
<p>Start: <input type="number" name="start" id="txtstart"></p>
<p>End: <input type="number" name="end" id="txtend"></p>
<p>Step: <input type="number" name="step" id="txtstep"></p>
<p><input type="button" value="COUNT" class="btn btn-primary" onclick="count()"></p>
</div>
<div id="result">
<p>Preparing the Count</p>
</div>
</section>
<footer>
<p>2023 - 'Let's Count' - Simple counting JS website with emoji - Project for study made by <i
class="fa-brands fa-linkedin"></i> <a href="https://www.linkedin.com/in/carlettju/"> Ju Carlett</a></p>
</footer>
</body>
</html>