-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
52 lines (49 loc) · 1.91 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact</title>
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<div id="Name">
<h1>Tolu Idowu</h1>
</div>
<nav>
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section id="About-Me">
<div id="content">
<h2>Contact</h2>
<form action="">
<label for="usersName">Name</label>
<input id="usersName" type="text" placeholder="John Smith" required="">
<label for="Email">Email</label>
<input id="Email" type="Email" placeholder="[email protected]" required="">
<label for="TextBox">Message</label>
<textarea name="TextBox" id="TextBox"></textarea>
<button type="Submit">Submit</button>
</form>
</div>
<div id="contact">
<h2>Connect With Me</h2>
<div class="profLogo">
<!-- LinkedIn -->
<a href="https://www.linkedin.com/in/tolulope-idowu-7393675b?trk=nav_responsive_tab_profile_pic" target="_blank"><img class="Logo" src="assets/images/LinkIn.png" alt="LinkedIn Logo"></a>
<!-- Stack Overflow -->
<a href="http://stackoverflow.com/users/7277518/tolu" target="_blank"><img class="Logo" src="assets/images/stackoverflow.png" alt="Stack Overflow Logo"></a>
<!-- Git Hub -->
<a href="https://github.com/itolu94" target="_blank"><img class="Logo" src="assets/images/github.png" alt="GitHub Logo"></a>
</div>
</div>
</section>
<footer id="Footer">
<p>Copyright Tolu Idowu</p>
</footer>
</body>
</html>