-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
120 lines (105 loc) · 4.77 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/common/style.css" rel="stylesheet" type="text/css">
<link rel="icon" type="image/png" href="assets/common/favicon.ico">
<script src="common.js"> </script>
<!-- Primary Meta Tags -->
<title>Call of Dooty | Contact Page</title>
<meta name="title" content="Call of Dooty | Contact Page">
<meta name="author" content="Brentyn Hanna">
<meta name="description" content="Las Vegas Tactical Plumbing Services & Sewer Work | For Hire">
<meta name="keywords"
content="Plumbing Plumber Services Sewer Work For Hire Las Vegas Nevada Contactor broken pipes pipe leak leaks">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="http://callofdooty702.com/">
<meta property="og:title" content="Call of Dooty | Las Vegas Tactical Plumbing Services">
<meta property="og:description" content="Las Vegas Tactical Plumbing Services & Sewer Work | For Hire">
<meta property="og:image" content="assets/call_of_dooty_social_sharing.jpg">
<meta property="og:image:alt"
content="Call of Dooty's figurehead logo action man standing infront of an exciting action scene. Text reads 'The Valiant Plumber You Can Count On'.">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="http://callofdooty702.com/">
<meta property="twitter:title" content="Call of Dooty | Las Vegas Tactical Plumbing Services">
<meta property="twitter:description" content="Las Vegas Tactical Plumbing Services & Sewer Work | For Hire">
<script src="https://code.iconify.design/1/1.0.7/iconify.min.js"></script> <!-- Includes Iconfiy Library -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H3NCPTGJJ1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-H3NCPTGJJ1');
</script>
</head>
<script src="common.js"> </script>
<body>
<section>
<header>
<a href="index.html">
<img id="title_image" src="assets/call_of_dooty.png" alt="Call of Dooty's title text.">
</a>
</header>
</section>
<section class="bg-primary">
<h1> Contact Form </h1>
<p>Our plumbers are professional and diligent, but working the front lines is hard work! Please be considerate of
what you write to our "troops". </p>
</section>
<section>
<form name="generalcontactform" method="post" class="flex_container bg-primary" action="forms/contactForm.php">
<span> Name: </span>
<input type="text" class="private_form" name="name" placeholder="John Doe">
<span> Phone Number: </span>
<input type="tel" class="private_form" name="phone" placeholder="(702)123-1234">
<span> Email: </span>
<input type="email" class="private_form" name="email" placeholder="example@email.com">
<span> Service Level: </span>
<select name="service">
<option value="" selected disabled hidden>Select</option>
<option type="radio" value="Basic"> Basic </option>
<option type="radio" value="Pro"> Pro </option>
<option type="radio" value="Business"> Business </option>
<option type="radio" value="Other"> Other </option>
</select>
<span> Comment(s): </span>
<textarea type="text" class="private_form" name="message" placeholder=""> </textarea>
<button class="border_primary open_cursor" type="submit" value="Send Form" onclick="return validateForm()">
Submit </button>
</form>
</section>
<section>
<footer>
<div class="flex_container">
<div>
<a href="index.html">
<img src="assets/call_of_dooty.png" width="300px" alt="Call of Dooty's title text.">
</a>
</div>
<div>
<p> Call of Dooty is no way affiliated or associated with or endorsed nor approved by Call of Duty
or any of its affiliates or parent company Activision Blizzard Inc. </p>
</p>
</div>
</div>
<hr>
<div class="footer_bottom">
<div id="social_footer">
<p> © Call of Dooty. All Rights Reserved 2021 | <a href="https://ibigital.com/"> Created by Bigital
</a> </p>
</div>
<div>
<a href="https://www.instagram.com/callofdootylv/"> <img src="assets/instagram_icon.png" width="25px"
alt="Instagram"> </a>
<a href="https://www.facebook.com/Call-Of-Dooty-104157772059957/"> <img src="assets/facebook_icon.png" width="25px"
alt="Facebook"> </a>
</div>
</div>
</footer>
</section>
</body>
</html>