-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (91 loc) · 3.27 KB
/
index.html
File metadata and controls
103 lines (91 loc) · 3.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Recap</title>
</head>
<nav style="textalign: right;">
<a href="https://leilahsmusicstudio.com" target="_blank">Home</a>
<a href="https://www.facebook.com/leilahsmusicstudio">Facebook</a>
<a href="https://leilahsmusicstudio.com/contact-us/" target="_blank">Contact Us</a>
</nav>
<body>
<header style="text-align: center; background-color: rgb(110, 233, 223);">
<h1>Contact Us!</h1>
</header>
<div>
<P> Do you or your child want to learn more about lessons and how they can help you accomplish <br />
your personal musical goals?</P>
</div>
<p>
</p>
<div>
<p>Or perhaps you want to know why cello is the best instrument to learn? </p>
<a href="https://www.eartothegroundmusic.co/2020/06/07/is-cello-the-best-instrument-to-learn/" target="_blank">Is Cello the Best Instrument to Learn?</a>
</div>
<div>
<p>STILL not convinced??? Watch the video below and you will understand!!</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Y13iTwDZJ68" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<br />
<P>Fill in the information below and we will respond as soon as we can!</P>
<div style="border: solid 2px black; padding; .5rem;">
<form>
<fieldset>
<legend>Customer Information</legend>
<p>
<label>
Customer Name:
<input name="name" />
</label>
</p>
<p>
<label>
Telephone:
<input type="tel" name="tel" />
</label>
</p>
<p>
<label>
Email Address:
<input type="email" name="email" />
</label>
</p>
</fieldset>
<fieldset>
<legend>Instrument Inquiry:</legend>
<p>
<input type="radio" name="size" id="size0" value="size0" />
<label for="size0">Cello</label>
</p>
<p>
<input type="radio" name="size" id="size1" value="size1" />
<label for="size1">Piano</label>
</p>
<p>
<input type="radio" name="size" id="size2" value="size2" />
<label for="size2">Voice</label>
</p>
</fieldset>
<fieldset>
<legend>Age</legend>
<p>
<input type="checkbox" name="child"
id="child" value="child" />
<label for="onions">Child</label>
</p>
<p>
<input type="checkbox" name="adult"
id="adult" value="adult" />
<label for="adult">Adult</label>
</p>
</fieldset>
<footer style="background-color: rgb(110, 233, 223);">
<p>Copyright © 2021 Leilah's Music Studio</p>
<p>
</p>
</footer>
</body>
</html>