-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
47 lines (40 loc) · 1.18 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/assets/style.css">
<title>Healthy Developers</title>
</head>
<body>
<nav>
<ul class="menu">
<li><a href="./index.html">Home</a></li>
<li><a href="./src/pages/about.html">About</a></li>
<li><a href="./src/pages/contact.html">Contact</a></li>
<li><a href="./src/pages/faq.html">FAQ</a></li>
</ul>
</nav>
<div class="container">
<div class="left">
<h1 class="title">WELCOME TO HEALTHY DEVELOPER</h1>
<a href="./src/pages/explore.html">
<button class="button-81" role="button">Explore</button>
</a>
</div>
</div>
<footer>
<div class="row">
<p>
Copyright © 2022 by Healthy-developer. All rights reserved.
</p>
<p class="footer-desc">This project is a part of <a class="footer-desc"
href="https://hacktoberfest.digitalocean.com/" target="_blank"
rel="noopener noreferrer">Hacktoberfest
2022</a>
</p>
</div>
</footer>
</body>
</html>