-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.13 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Portfolio</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<div id="header">
<div class="nav-container">
<h1 id="logo">React <span id="logo-color">Ninjas</span></h1>
<a href="index.html" class="active"><i class="fa fa-fw fa-home"></i>Home</a>
<a href="about.html"><i class="fa fa-fw fa-search"></i>About</a>
<a href="contact.html"><i class="fa fa-fw fa-envelope"></i>Contact</a>
</div>
</div>
<div id="main">
<div class="slider-container">
<h1>I'm a React Developer</h1>
<p>Welcome to my Skillset Portfolio</p>
</div>
<footer>
All rights reserved. ©2022
</footer>
</div>
</body>
</html>