-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
56 lines (56 loc) · 2.26 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
53
54
55
56
<!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">
<meta name="description" contents="">
<meta name="keywords" contents="contact, Dibba Designs & Development">
<title>Contact | Dibba Designs & Development</title>
</head>
<body>
<header>
<nav>
<hr>
<ul><li><a href="week7CodingAssignment.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a>
<li><a href="contact.html">Contact</a></li>
</ul>
<hr>
</nav>
</header>
<main>
<h1>Contact</h1>
<p>Marissa Dibba</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<div>
<form action="">
<label for="first-name">First Name</label><br />
<input name="first-name" type="text"><br />
<label for="last-name">Last Name</label><br />
<input name="last-name" type="text"><br />
<label for="company-name">Company Name</label><br />
<input name="company" type="text"><br/>
<label for="email">Email</label><br />
<input name="email" type="email"><br/>
<label for="request-description">Request</label><br />
<input name="request-description" type="text"><br/>
<button type="submit">Submit</button>
</form>
</div>
<footer>
<hr>
<nav>
<ul>
<li><a href="https://www.linkedin.com/in/marissadibba/" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/Rissa-Jallow" target="_blank">GitHub</a></li>
<li><a href="mailto:[email protected]">Email</a></li>
</ul>
</nav>
<div><p>© 2022 Marissa Dibba. All Rights Reserved | <a href="#">Privacy Policy</a></p></div>
</footer>
</main>
</body>
</html>