-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial- scale=1.0">
<title> The calculator </title>
<link rel="stylesheet" href="mainstyle.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
<body>
<nav>
<div class="menu">
<input type="checkbox" id="check">
<div class="logo"><a href="index.html">The calculator </a></div>
<ul>
<label class="btn cancel" for="check"><i class="fas fa-times"></i></label>
<li><a href="index.html">Home</a></li>
<li><a href="basic.html">Basic</a></li>
<li><a href="sin.html">Scientific</a></li>
<li><a href="#">Age</a></li>
<li><a href="#">Tip</a></li>
<li><a href="https://github.com/naemazam/The-Calculator">Github</a></li>
</ul>
<label for="check" class="btn bars"><i class="fas fa-bars"></i></label>
</div>
</div>
</nav>
<div class="center">
<p> On Maintanances </p>
</div>
</body>
</html>