-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (38 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Standard calculator</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="title">Standard Calculator </h1>
<form>
<label for="numbers"><input placeholder="0" type="text" id="numbers"></label>
</form>
<div id="button">
<button class="submit" id="c"> C </button>
<button id ="submit" class="submit"> = </button>
</div>
<div id="guide">
<h4></h4>
<p id="int">Please read these guide lines:</p>
<ul>
<li>
Welcome to the Standard Calculator! This app provides basic <b>arithmetic operations</b> and <b>interactive features</b> designed to make calculations quick and user-friendly. Developed with <b>HTML, CSS, and JavaScript,</b> the calculator also offers a unique <b>history</b> feature, allowing users to reference or reuse previous calculations easily..
</li>
<li>
These guidelines will disapper as you start calculating.
</li>
<li>If you hit<span class="bold"> = </span> without entring a value you will get a <i>Surprise</i>.</li>
</ul>
</div>
<div id="result">
<div id="swapme"></div>
</div>
<div id="history">
</div>
<script src="js.js"></script>
</body>
</html>