-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
78 lines (74 loc) · 2.39 KB
/
contact.html
File metadata and controls
78 lines (74 loc) · 2.39 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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
http-equiv="description"
content="osarumen harriet is a frontend developer based in nigeria"
/>
<meta http-equiv="author" content="Osarumen harriet" />
<meta name="keywords" content="osarumen harriet portfolio, frontend" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>contact me</title>
<link href="contact.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<nav class="navbar">
<div class="navbar-logo">
<a href="index.html">Osarumen<span class="io-color">.io</span></a>
</div>
<div class="navbar-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#about-me">About</a></li>
<li><a href="index.html#work">Work</a></li>
<li>
<a href="https://medium.com/@harriosas" target="_blank">Blog</a>
</li>
<li><a href="#" class="active">Contact</a></li>
</ul>
</div>
</nav>
</header>
<main class="contact-container">
<section class="contact">
<div class="contact-form">
<div class="salute">
<div><h1>👋 Hi get intouch</h1></div>
<div>
<p>Lets work together</p>
</div>
</div>
<div class="forma">
<form action="#">
<label for="text">Name</label
><input type="text" name="text" /><br />
<label for="email">Email</label>
<input type="email" name="email" /><br />
<label for="textarea">A few words about the project</label>
<textarea
type="text"
placeholder="Enter your message"
name="textarea"
></textarea>
<input id="submit" type="submit" value="submit" />
</form>
</div>
</div>
</section>
</main>
<footer class="footer-container">
<div class="footer-paragraph">
<div>
<p>
Osabuohien Harriet- frontend developer based in Nigeria.Currently a
fellow at TIIDElab
</p>
<p></p>
</div>
<div class="hand-crafted"><p>Hand crafted by me © 2021</p></div>
</div>
</footer>
</body>
</html>