-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
54 lines (49 loc) · 2.16 KB
/
Index.html
File metadata and controls
54 lines (49 loc) · 2.16 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
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta name = "viewport" content = "with=device-width, initial-scale = 1.0">
<title> ENERGY ASSISSTANT </title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Instrument+Serif&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.4.2/css/fontawesome.min.css">
</head>
<body>
<section class = "header">
<nav>
<a href = "index.html"><img src = https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRSkxUW1QU5Z_MdVNRnlzTiv22hDW3rQ16wTw&usqp=CAU ></a>
<div class = "nav-links" id="navlinks">
<i class="fa fa-window-close" onclick="hidemenu()"></i>
<ul>
<li><a href = "">HOME</a></li>
<li><a href = "about.html">ABOUT</a></li>
<li><a href = "Blog.html">BLOG</a></li>
<li><a href = "Comments.html">COMMENTS</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showmenu()"></i>
</nav>
<div class="text-box">
<h1>WELCOME TO THE ENERGY ASSISSTANT SITE!</h1>
<p>THIS IS AN UNOFFICIAL SITE FOR ENERGY CONSERVATION AND USAGES WITH DIFFERENT VARIATIONS FOR DAILY PURPOSES.
</p>
<a href="" class="hero-btn">VISIT US TO KNOW MORE ABOUT </a>
</div>
</section>
<script>
var navlinks = document.getElementById("navlinks");
function showmenu(){
navlinks.style.right = "0";
}
function hidemenu(){
navlinks.style.right = "-200px";
}
</script>
<footer>
<div class="footer-text">
<p>© 2024 All Services Reserved.</p>
</div>
</footer>
</body>
</html>