-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
42 lines (42 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>EM Contact</title>
<meta charset="UTF-8">
</head>
<body>
<header>
<div id="innerParentHeader">
<div id="heading"><h1>Ekaterina Macedo</h1></div>
<div id="navigation">
<ul>
<li><a href="contact.html">Contact</a></li>
<li><a href="portfolio.html">Portfolio</a> </li>
<li><a href="index.html">About</a></li>
</ul>
</div>
</div>
</header>
<div id="container">
<div id="innerSection">
<h2 id="aboutMeTitle">Contact</h2>
<form class="formContact">
<label for="nameInput">Name</label>
<br>
<input type="text" name="name" id="nameInput">
<br><br>
<label for="emailInput">Email</label><br>
<input type="text" name="email" id="emailInput">
<br><br>
<label for="messageInput2">Message</label><br>
<!-- <input type="text" name="message" id="messageInput" ><br> -->
<textarea name="message" id="messageInput2" cols="30" rows="10"></textarea>
<button type="submit" value="Submit">Submit </button>
</form>
</div>
</div>
<footer>Copyright ©</footer>
</body>
</html>