-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactme.html
57 lines (50 loc) · 2.01 KB
/
contactme.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Webfolio</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="Images/web.png">
</head>
<body>
<!-- Header -->
<div class="header" style="height:100px">
<table valign="middle" border="0" cellpadding="20">
<tbody>
<th>
<img src="Images/icon.png" height="100px" cellpadding="25">
<td>
<a href=index.html style="text-decoration:none">Trey Ignatius Leong</a>
/ <a href=contactme.html style="text-decoration:none">Contact Me</a>
</td>
</th>
</tbody>
</table>
</div>
<!-- banner section -->
<section class="contact-info">
<h1>Get in Touch With Me</h1>
<p>
Here to answer any questions that you may have!
</p>
</section>
<!-- Contact form -->
<section class="contact-form" style="text-align: center">
<div class="container-contact">
<h2 class="details">Your Details</h2>
<form action="https://formcarry.com/s/f7HqqlTlmKs" method="POST" enctype="multipart/form-data" class="formcarry">
<input type="text" id="name" name="name" placeholder="Name" required>
<br><br><br>
<input type="email" id="email" name="email" placeholder="Email" required>
<br><br><br>
<input type="tel" id="phone" name="phone" placeholder="Phone (optional)">
<br><br><br><br><br><br>
<textarea id="message" name="message" rows="10" maxlength="3000"; placeholder="Type your message here..." required></textarea>
<br><br><br><br><br><br>
<button type="submit" class="submit-button" id="submit">Submit</button>
</form>
</div>
</section>
</body>
</html>