-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (47 loc) · 2.21 KB
/
Copy pathindex.html
File metadata and controls
48 lines (47 loc) · 2.21 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
<!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.0">
<title>Frontend Mentor - Calculator app</title>
<link rel="icon" href="./media/favicon-32x32.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=League+Spartan&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<style data="test1" type="text/css"></style>
<style data="test2" type="text/css"></style>
<div id="flex-container">
<div id="header-box">
<div>
<input type="range" min="1" max="3" class="slider" value="1">
</div>
<p>THEME</p>
<h1>calc</h1>
</div>
<div class="result-box"><div class="result-slider"></div></div>
<div id="grid-container">
<button class="button" value="7"><h3>7</h3></button>
<button class="button" value="8"><h3>8</h3></button>
<button class="button" value="9"><h3>9</h3></button>
<button class="button item4" value="del"><h3>DEL</h3></button>
<button class="button" value="4"><h3>4</h3></button>
<button class="button" value="5"><h3>5</h3></button>
<button class="button" value="6"><h3>6</h3></button>
<button class="button" value="+"><h3>+</h3></button>
<button class="button" value="1"><h3>1</h3></button>
<button class="button" value="2"><h3>2</h3></button>
<button class="button" value="3"><h3>3<h3></h3></button>
<button class="button" value="-"><h3>-</h3></button>
<button class="button" value="."><h3>.</h3></button>
<button class="button" value="0"><h3>0</h3></button>
<button class="button" value="/"><h3>/</h3></button>
<button class="button" value="*"><h3>x</h3></button>
<button class="item17" value="reset"><h3>RESET</h3></button>
<button class="item18" value="="><h3>=</h3></button>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>