-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
76 lines (76 loc) · 2.21 KB
/
contact.html
File metadata and controls
76 lines (76 loc) · 2.21 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
<!DOCTYPE html>
<!-- Website template by freewebsitetemplates.com -->
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="user-scalable=0, width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Contact - Belle & Carrie Rehabilitation Yoga Web Template</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/mobile.css">
<script type='text/javascript' src='js/mobile.js'></script>
</head>
<body>
<div id="header">
<h1><a href="index.html">Belle & Carrie <span>Rehabilitation Yoga</span></a></h1>
<ul id="navigation">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="classes.html">Classes</a>
<ul>
<li>
<a href="instructors.html">Instructors</a>
</li>
</ul>
</li>
<li class="current">
<a href="contact.html">Contact</a>
</li>
<li>
<a href="blog.html">Blog</a>
</li>
</ul>
</div>
<div id="body">
<h2>Contact</h2>
<form action="index.html">
<h3>Inquiries</h3>
<label for="name">
<span>Name</span>
<input type="text" id="name">
</label>
<label for="email">
<span>Email</span>
<input type="text" id="email">
</label>
<label for="subject">
<span>Subject</span>
<input type="text" id="subject">
</label>
<label for="message">
<span>Message</span>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
</label>
<input type="submit" id="send" value="Send">
</form>
</div>
<div id="footer">
<div>
<span>123 St. City Location, Country | 987654321</span>
<p>
© 2023 by Belle & Carrie Rehabilitation Yoga. All rights reserved.
</p>
</div>
<div id="connect">
<a href="https://freewebsitetemplates.com/go/facebook/" id="facebook" target="_blank">Facebook</a>
<a href="https://freewebsitetemplates.com/go/twitter/" id="twitter" target="_blank">Twitter</a>
<a href="https://freewebsitetemplates.com/go/googleplus/" id="googleplus" target="_blank">Google+</a>
<a href="https://freewebsitetemplates.com/go/pinterest/" id="pinterest" target="_blank">Pinterest</a>
</div>
</div>
</body>
</html>