-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1.01 KB
/
index.html
File metadata and controls
24 lines (24 loc) · 1.01 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Это мой Калькулятор!">
<title>Калькулятор</title>
<link rel="stylesheet" href="index.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<div id="calculator">
<header id="tab">0</header>
<div class="calc">
<div id="AC">AC</div><div id="sc">()</div> <div id="pros">//</div> <div id="del">/</div>
<div id="seven">7</div><div id="eight">8</div><div id="nine">9</div> <div id="umn">*</div>
<div id="four">4</div><div id="five">5</div><div id="six">6</div><div id="min">-</div>
<div id="one">1</div><div id="two">2</div><div id="three">3</div><div id="plus">+</div>
<div id="ziro">0</div><div id="z">,</div><div id="close">x</div><div id="res">=</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>