-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (61 loc) · 2.13 KB
/
Copy pathindex.html
File metadata and controls
69 lines (61 loc) · 2.13 KB
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
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body>
<div class="container">
<div class="content">
<img class="avatar" alt="avatar" src="./images/pretty.jpg" />
</div>
<div class="content">
<div class="title">
<h2 class="name">Ndifreke Etukudo</h2>
<span class="position">Aspiring Software developer</span>
</div>
</div>
<div class="content" id="about-content">
<h2>About Me</h2>
<p class="about">
I am a front-end Engineer and a digital Marketer, very interested in user experience, and passionate about making the web assessible to
everyone, with dreams of reaching the underdogs.<br />
I am passionate about problem solving using the web technology. when i am not coding you'll see me reading and changing the kitchen aroma
with my unique recipes
</p>
</div>
<div class="content" id="bio-content">
<h2>Bio Data</h2>
<p class="about">
Hi, my name is Ndifreke Etukudo,from Akwa Ibom state born 1999, live in lagos
<br />
Electrical Engineer by profession, also an aspiring Front end Engineer, Slack-UserName: FrekeB
</p>
</div>
<div class="content contact-form">
<form class="contact">
<div class="input-item">
<h3> Contact us</h3>
<label>Name</label>
<input type="text" />
</div>
<div class="input-item">
<label>Email Address</label>
<input type="text" />
</div>
<div class="input-item">
<label>Message</label>
<textarea rows="6" type="text" ></textarea>
</div>
<div>
<button type="submit">Send Message</button>
</div>
<div></div>
</form>
</div>
</div>
</body>
</html>