forked from MastersAcademy/fe-course-basic-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 10-final_SviatoslavTaranenko
- Loading branch information
Showing
29 changed files
with
1,944 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="./css/style.css"> | ||
<link | ||
href="https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic" | ||
rel="stylesheet" | ||
> | ||
<title>Basic JS</title> | ||
</head> | ||
<body> | ||
<header class="header"> | ||
<div class="header__container"> | ||
<a class="header__logo" href="#"> | ||
<img src="img/logo.svg" alt="logo"> | ||
</a> | ||
<div class="header__burger"> | ||
<span></span> | ||
</div> | ||
<nav class="nav"> | ||
<ul class="header__menu"> | ||
<li class="menu__list"> | ||
<a href="calculator.html" class="menu__link">Calculator</a> | ||
</li> | ||
<li class="menu__list"> | ||
<a href="games.html" class="menu__link">Games</a> | ||
</li> | ||
<li class="menu__list"> | ||
<a href="index.html" class="menu__link">About</a> | ||
</li> | ||
<li class="menu__list"> | ||
<a href="login.html" class="menu__link">Login</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</header> | ||
<main class="main"> | ||
<section class="calculator-block"> | ||
<h1 class="tittle__calculator">Calculate Games</h1> | ||
<div class="field"> | ||
<label> | ||
<input id="firstValue" class="custom__item-calculator"> | ||
</label> | ||
<label> | ||
<select name="operation" id="operation" class="custom__item-calculator"> | ||
<option value="+">+</option> | ||
<option value="-">-</option> | ||
<option value="/">/</option> | ||
<option value="*">*</option> | ||
<option value="**">**</option> | ||
</select> | ||
</label> | ||
<label> | ||
<input id="secondValue" class="custom__item-calculator"> | ||
</label> | ||
<button class="custom__item-calculator btn-calculator" id="calculate" type="button"> | ||
= | ||
</button> | ||
<span id="result"></span> | ||
</div> | ||
</section> | ||
</main> | ||
<footer class="footer"> | ||
<div class="footer__container"> | ||
<div class="footer__social"> | ||
<a href="https://www.facebook.com/profile.php?id=100011383900387&locale=uk_UA"> | ||
<img src="./img/Footer/face.svg" alt="facebook"> | ||
</a> | ||
<a href="https://www.linkedin.com/in/%D1%81%D0%B5%D1%80%D0%B3%D1%96%D0%B9-%D0%BD%D0%BE%D1%81%D0%BA%D0%BE%D0%B2-54148928a/"> | ||
<img src="./img/Footer/linkdn.svg" alt="linkedin"> | ||
</a> | ||
<a href="https://www.instagram.com/yasnyy.sirius/"> | ||
<img src="./img/Footer/inst.svg" alt="instagram"> | ||
</a> | ||
</div> | ||
<div class="footer__text"> | ||
Made with 💗 on course 'Frontend for beginners' from Masters Academy in 2023, by Serhii Noskov | ||
</div> | ||
</div> | ||
</footer> | ||
<script src="./scripts/script-calculator.js"></script> | ||
<script src="./scripts/homework-calculator.js"></script> | ||
<script src="./scripts/burger.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.