-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (49 loc) · 1.96 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
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<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 Portofolio</title>
</head>
<body>
<div class="hero">
<nav>
<h2 class="logo">My Porto<span>folio</span></h2>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About<span>me</span></a></li>
<li><a href="#"><span>My</span>Services</a></li>
<li><a href="#"><span>My</span>Skills</a></li>
<li><a href="#">Contact<span>me</span></a></li>
</ul>
<a href="#" class="btn">SUBSCRIBE</a>
</nav>
<div class="content">
<h4>Hello my name is</h4>
<h1>NKEMBOH ISAIAH</h1>
<H3>I am a Tech Enthausiast</H3>
<br>
<div class="newsletter">
<form>
<input type="email" name="Email" id="mail" placeholder="Enter your email here">
<input type="submit" name="submit" value="Let's connect">
</form>
</div>
</div>
</div>
<section>
<div class="about-section">
<div class="about-pic">
<img src="img/about.jpg" alt="This is a photo of me">
</div>
<div class="about-text">
<h2>About me</h2>
<p>I am a self-taught developer focusing on web-development <br>I am also a designer and love photogaphy and video-editing <br>
I'm actually a rookie in open source contribution in projects that can help ameliorate living standards in my country.</p>
</div>
</div>
</section>
</body>
</html>