-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (39 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>HOMEPAGE</title>
<link rel="stylesheet" href="Cover.css" type="text/css">
</head>
<body>
<div class="container">
<nav class="navbar">
<ul>
<li><a href="#cover"></a></li>
<li><a href="#menu"></a></li>
<section id="cover">
<header>
<div class="title">
<div class="logo">
<img src="Logo.png" >
</div>
<h1>CODEVENGERS</h1>
<p>WE CODE ()</p>
<p>WE CREATE {}</p>
<p>WE CONTROL <></p>
</div>
</header>
</section>
<section id="menu">
<div class="navigation">
<ul>
<li><a data-text="Home" href="index.html">HOME</a></li>
<li><a data-text="Our Story" href="About.html">OUR STORY</a></li>
<li><a data-text="Our Creations" href="Projects.html">OUR CREATIONS</a></li>
<li><a data-text="Our Fam" href="Team.html">OUR FAM</a></li>
<li><a data-text="Contact" href="Contact.html">CONTACT</a></li>
</ul>
</section>
</div>
</body>
</html>