-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcontact-form.html
67 lines (64 loc) · 2.42 KB
/
contact-form.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
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<title>OluwalolopeMe</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="cv-page">
<div class="header white row-flex-container">
<div class="title">
<h2>Hope Oluwalolope</h2>
</div>
<div class="nav-bar">
<a href="#">Blog</a>
<a href="my-cv.html">Education</a>
<a href="my-cv.html">Experience</a>
<a href="my-portfolio.html">Portfolio</a>
<a href="contact-form.html">Contact</a>
</div>
</div>
<div class="main">
<div class="index-content">
<div class="middle">
<form>
<span><h1>CONTACT ME</h1></span>
<div>
<span>NAME: </span><br>
<input type="text" name="name" required="">
</div>
<div>
<span>EMAIL:</span><br>
<input type="email" name="email" required="">
</div>
<div>
<span>PHONE:</span><br>
<input type="text" name="phone" required="">
</div>
<div>
<span>SUBJECT:</span><br>
<input type="text" name="subject" required="">
</div>
<div class="clearfix"> </div>
<div>
<span>MESSAGE: </span><br>
<textarea name="Message" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Message...';}" required=""></textarea>
</div>
<input type="submit" value="Submit" class="btn">
<input type="reset" value="Clear" class="btn">
</form>
</div>
</div>
</div>
<div class="footer">
<p>
©
<script>
document.write(new Date().getFullYear())
</script> OluwalolopeMe.com All rights reserved
</p>
</div>
</div>
</body>
</html>