-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-us.html
93 lines (80 loc) · 2.34 KB
/
contact-us.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Jacob Wu</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
color: #333;
}
.header {
background-color: #002147;
color: #FFD700;
padding: 20px;
text-align: center;
}
.container {
max-width: 900px;
margin: 30px auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.container h1 {
font-size: 2em;
color: #002147;
text-align: center;
margin-bottom: 30px;
}
.container p {
font-size: 1.1em;
color: #333;
margin-bottom: 30px;
text-align: center;
}
iframe {
width: 100%;
height: 800px;
border: 0;
border-radius: 10px;
}
.footer {
text-align: center;
padding: 20px;
background-color: #002147;
color: #FFD700;
margin-top: 30px;
border-radius: 10px;
}
.footer a {
color: #FFD700;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="header">
<h1>Contact Jacob Wu</h1>
<p>Get in touch with me by filling out the form below</p>
</div>
<div class="container">
<h1>Contact Form</h1>
<p>Please provide your contact details and message. I will get back to you as soon as possible.</p>
<!-- Google Form Embed -->
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSexANiPiQ4W5po7ni-bzn8bGhAicyYmLY46JKls-EHyJN8Q1w/viewform?embedded=true" width="512" height="2048" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<div class="footer">
<p>© 2024 Jacob Wu. All rights reserved.</p>
<p><a href="https://jacobwu.org">Visit My Website</a></p>
</div>
</body>
</html>