-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
51 lines (48 loc) · 1.28 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
48
49
50
51
<!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="style.css" />
<title>My Portfolio</title>
</head>
<body>
<div class="navigation">
<div class="name">
<a href="index.html"
><h2>React <span class="surname">Ninjas</span></h2></a
>
</div>
<ul>
<a href="index.html"><li>Home</li></a>
<a href="#about"><li>About</li></a>
<a href="#contact"><li>Contact</li></a>
<a href="#services"><li>Services</li></a>
</ul>
</div>
<section class="main-page">
<h1>I am a Web Developer</h1>
<h2>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Autem, odio!
</h2>
</section>
<div class="container">
<div id="about">
<br />
<h3>About Me</h3>
<p>Lorem ipsum dolor sit amet.</p>
</div>
<div id="contact">
<br />
<h3>Contact Me</h3>
<p>Lorem ipsum dolor sit amet.</p>
</div>
<div id="services">
<br />
<h3>My services</h3>
<p>Lorem ipsum dolor sit amet.</p>
</div>
</div>
</body>
</html>