forked from codemistic/Web-Development
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCounter.html
More file actions
34 lines (32 loc) · 1.11 KB
/
Counter.html
File metadata and controls
34 lines (32 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8" />
<title>Counting Website</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="Counter.css" />
</head>
<body>
<div class="box">
<div class="container one">
<h1 id="heading">Free Counting Website!</h1>
<div class="para">
<p id="number">0</p>
</div>
<ul>
<li><input id="increase" type="submit" name="Increase" value="Increase" /></li>
<li><input id="decrease" type="submit" name="Decrease" value="Decrease" /></li>
<li><input id="reset" type="submit" name="Reset" value="Reset" /></li>
</ul>
</div>
</div>
<script src="Counter.js"></script>
</body>
</html>