-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
70 lines (56 loc) · 2.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<link rel="stylesheet" href="css/general.css">
<link rel="stylesheet" href="css/contact.css">
<html>
<head>
<title>Contact Me</title>
</head>
<body>
<div class="page-heading">
<header class="main-header">
<h1>Martin Lou</h1>
<h3>Software Engineer Intern</h3>
</header>
<nav class="navigation">
<a href="index.html">Home</a>
<a href="education.html">Education and Skill</a>
<a href="personalproject.html">Personal Projects</a>
<a href="workexperience.html">Work Experience</a>
<a href="research.html">Research</a>
<a href="contact.html" class="current-page-head">Contact Me</a>
</nav>
</div>
<div class="contents">
<h3 class="banner"> Contact Me </h3>
<form class="contact-form" action="https://formsubmit.co/m1115756947@gmail.com" method="POST">
<div class="form-group">
<label> Name: </label>
<input type="text" name="name" placeholder="Full Name" required>
</div>
<div class="form-group">
<label> Email: </label>
<input type="email" name="email" placeholder="Email Address" required>
</div>
<div class="form-group">
<label> Message: </label>
<textarea name="message" cols="30" rows="10" placeholder="enter message here" required></textarea>
</div>
<button class="button" type="submit">Send</button>
</form>
</div>
<div class="page-footing">
<hr>
<ul>
<li>
<strong>Linkedin: </strong>
<a href="https://www.linkedin.com/in/martinlou2002/" target="_blank">https://www.linkedin.com/in/martinlou2002/</a>
</li>
<li>
<strong>GitHub: </strong>
<a href="https://github.com/mlool" target="_blank">https://github.com/mlool</a>
</li>
</ul>
<p>Designed by Martin Lou | © 2022</p>
</div>
</body>
</html>