-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (28 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page of Manga Website</title>
<link rel="shortcut icon" href="images/codezero-high-resolution-logo-white.png" type="image/x-icon">
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="HomePage.css">
</head>
<body>
<h1 id="HomePageTitle">Home Page</h1>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Categories.html">Categories</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Mangas.html">Mangas</a></li>
<li><a href="Profile.html">Profile</a></li>
<li><a href="https://discord.gg/7wtqV4kq4r" target="_blank">Developer Community</a></li>
</ul>
</nav>
<main>
<h3>Home Page Content</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Error itaque aliquam eos ipsam ipsa asperiores aliquid deleniti, provident cum quibusdam eveniet laborum dolorum quos repellat inventore illum. Molestias, sit repellendus!</p>
</main>
</body>
</html>