-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.html
79 lines (79 loc) · 3.4 KB
/
calculator.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Basic JS</title>
<link rel="stylesheet" href="./Styles/calculator.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="header__all">
<img class="header__img" src="img/logo.svg" alt="Logo">
<div class="header__items">
<div class="header__items_Calculator">
<a href="calculator.html">Calculator</a>
</div>
<div class="header__items_Games">
<a href="Games.html">Games</a>
</div>
<div class="header__items_About">
<a href="index.html">About</a>
</div>
<div class="header__items_Login">
<a href="Login.html">Login</a>
</div>
</div>
</div>
</header>
<h1 class="title">Calculator v. 1</h1>
<div class="field">
<label>
<input id="firstValue">
</label>
<label>
<select name="operation" id="operation">
<option value="+">+</option>
<option value="-">-</option>
<option value="/">/</option>
<option value="*">*</option>
<option value="**">**</option>
</select>
</label>
<label>
<input id="secondValue">
</label>
<button id="calculate" type="button">=</button>
<span id="result"></span>
</div>
<script src="scripts/calculator.js"></script>
<script src="scripts/homework.js"></script>
<footer class="footer">
<div class="footer__icons">
<div class="footer__icons_row">
<a href="https://www.facebook.com/sviatoslav.taranenko" target="_blank">
<div class="footer__icons_all">
<img src="img/facebook.svg" alt="Logo">
</div>
</a>
<a href="https://www.linkedin.com/in/%D1%81%D0%B2%D1%8F%D1%82%D0%BE%D1%81%D0%BB%D0%B0%D0%B2-%D1%82%D0%B0%D1%80%D0%B0%D0%BD%D0%B5%D0%BD%D0%BA%D0%BE-6bb602273/" target="_blank">
<div class="footer__icons_all">
<img src="img/LinkedIn.svg" alt="Logo">
</div>
</a>
<a href="https://www.instagram.com/sviat_taranenko" target="_blank">
<div class="footer__icons_all">
<img src="img/Instagram.svg" alt="Logo">
</div>
</a>
</div>
</div>
<div class="footer__text">
<p>Made with 💗 on course
<a class="about__text_link" href="https://www.mastersacademy.education/frontend-for-beginners-it" target="_blank">'Frontend for beginners' from Masters Academy in 2023,</a> by Sviatoslav Taranenko
</p>
</div>
</footer>
</body>
</html>