-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
167 lines (165 loc) · 6.15 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="icon.png" />
<title>Contact Us</title>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/styles_contact.css" />
<link href="./smartmenus/sm-core-css.css" rel="stylesheet" />
<link href="./smartmenus/sm-blue.css" rel="stylesheet" />
<script
src="https://code.jquery.com/jquery-3.6.3.min.js"
integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU="
crossorigin="anonymous"
></script>
<script type="text/javascript" src="js/contact.js"></script>
<script src="./smartmenus/jquery.smartmenus.min.js"></script>
<script src="js/custom_smart_menu.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.validate.min.js"></script>
</head>
<body>
<header id="site-header">
<div class="main-menu">
<nav class="main-nav" role="navigation">
<h2 class="nav-brand"><a href="./">Phuong Anh Vu</a></h2>
<ul class="sm sm-blue" id="main-menu">
<li><a href="./">Home</a></li>
<li><a href="favorite_books.html">Favorite Books</a></li>
<li><a href="about_us.html">About Us</a></li>
<li>
<a href="#">Service</a>
<ul>
<li>
<a href="#">Building Website</a>
<ul>
<li><a href="#">Drupal 8</a></li>
<li><a href="#">Drupal 9</a></li>
<li><a href="#">Drupal 10</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="color_theory.html">Color Theory</a></li>
<li><a href="VietNam_scenic.html">Vietnam Scenic</a></li>
<li class="active"><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<div id="banner">
<h1>Let's Get in Touch</h1>
</div>
<main id="main">
<section id="contact-us">
<div class="wrap pixpa-contactus">
<div class="alert alert-success" role="alert" id="success_message">
Thanks for getting in touch. We'll get back to you soon.
</div>
<div class="pannel-left w-100">
<p>
Feel free to use the contact form to the right to reach out to us.
</p>
<div class="contact-form w-75">
<form
class="js-contact-form js-csrf-form-field"
id="contact"
name="contact"
method="post"
>
<div class="input-form">
<input
type="text"
required
placeholder="Full Name"
id="fullName"
name="fullName"
title="PLease enter your full name."
class="required contact-form-field"
/>
</div>
<div class="input-form">
<input
type="text"
required
placeholder="Your Age"
id="age"
name="age"
class="contact-form-field"
/>
</div>
<div class="input-form">
<input
type="text"
required
placeholder="Your Phone Number"
name="phone"
id="phone"
class="required contact-form-field"
/>
</div>
<div class="input-form">
<input
type="email"
placeholder="Your email address"
class="required contact-form-field"
id="email"
name="email"
/>
</div>
<div class="input-form">
<p>What is your job?</p>
<input type="radio" name="job" id="student" value="student" />
<label for="student">Student</label>
<input
type="radio"
name="job"
id="engineering"
value="engineering"
/>
<label for="engineering">Engineering</label>
<input
type="radio"
name="job"
id="tech/admin"
value="tech/admin"
/>
<label for="tech/admin">Tech/Admin</label>
<input
type="radio"
name="job"
id="security"
value="security"
/>
<label for="security">Security</label>
</div>
<div>
<label class="m-0" for="contact"
>Please select your preferred contact method:</label
><br />
<select name="contact" id="contact" class="required">
<option value="none" selected="true" disabled="disabled">
-- Choose --
</option>
<option value="email">E-mail</option>
<option value="phone">Phone</option>
<option value="mail">Mail</option>
</select>
</div>
<button
type="submit"
id="contact-form"
class="submit-btn button v-pixpa-blue margin-t25"
>
Submit
</button>
</form>
</div>
</div>
</div>
</section>
</main>
<div id="footer">Copyright © Phuong Anh Vu; 2023 All Rights Reserved.</div>
</body>
</html>