-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
108 lines (96 loc) · 3.45 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact_Page</title>
<link rel="stylesheet" href="Contact.css">
<script>var __adobewebfontsappname__="dreamweaver"</script>
<script src="http://use.edgefonts.net/source-sans-pro:n2:default.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<!-- Top Navigation Menu -->
<div class="topnav">
<a href="Home.html" class="active"><strong>Denver Guitar Instructor</strong></a>
<div id="myLinks">
<a href="Home.html">Home</a>
<a href="Blog.html">Blog</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
<script>
function myFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "block") {
x.style.display = "none";
}
else {
x.style.display = "block";
}
}
</script>
</div>
<body>
<div class="Title"><h1>Music Lessons Contact Page</h1></div>
<div class="Contact_Container">
<p>You can contact me via email, phone, or you can send me a
message using the contact form below. I'll be in touch with you shortly!
<br><br><strong>Email</strong><br>[email protected]<br><br><strong>Phone:</strong>
<br>269-303-8271
</p>
</div>
<form>
<fieldset id="Form_Block">
<div class="Name_Block">
<div class="First_Name_Title">
First Name:
</div>
<div class="First_Name_Text">
<input class="Field_Element" name="fname" x-autocompletetype="given-name" type="text" spellcheck="false" maxlength="30" data-title="First" aria-required="true">
</div>
<div class="Last_Name_Title">
Last Name:
</div>
<div class="Last_Name_Text">
<input class="field-element field-control" name="lname" x-autocompletetype="surname" type="text" spellcheck="false" maxlength="30" data-title="Last" aria-required="true">
</div>
</div>
<div id="Phone_Block">
<div class="Phone_Title">
Phone:
</div>
<div class="Phone_Number_Text">
<input class="field-element" x-autocompletetype="phone-area-code" type="text" maxlength="10" data-title="Areacode" aria-required="true">
</div>
</div>
<div class="Message_Block">
<div class="Email_Title">
Email:
</div>
<div class="Email_Text">
<input class="field-element" type="text" maxlength="30" aria-required="true">
</div>
<div class="Subject_Title">
Subject
</div>
<div class="Subject_Text">
<input class="field-element text" type="text" aria-required="true">
</div>
<div class="Message_title">
Message:
</div>
<div class="Message_text">
<textarea class="Message_Field" aria-required="true">
</textarea>
</div>
</div>
<div data-animation-role="button" class="submit_button">
<input class="button" type="submit" value="SUBMIT">
</div>
<div class="hidden form-submission-html" data-submission-html=""></div>
</fieldset>
</form>
</body>
</html>