-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
102 lines (79 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RUBY - Contact Us</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Tammudu+2&family=Rajdhani:wght@300&display=swap" rel="stylesheet">
<link rel="icon" href="images/rubyfavicon.ico">
</head>
<body>
<div class="top-container-contact">
<img class="top" src="images/ruby.png" alt="rubylogo">
</div>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li>|</li>
<li><a href="drinks.html">Drinks Menu</a></li>
<li>|</li>
<li><a href="food.html">Food Menu </a></li>
<li>|</li>
<li><a href="contact.html">Contact Us</a></li>
<li>|</li>
<li><a href="book.html">Book a Table</a></li>
</ul>
</nav>
</header>
<div class="middle-container-others">
<div class="f-body">
<h2>Get in touch to find out more about our services!</h2>
<div id="f-form">
<form id="f-form-id" class="f-form-class" method="post" action="contact-button-landing.html" href="mailto:[email protected]">
<div class="f-form-group">
<label for="Name" class="f-label">Your name</label>
<div class="f-input-group">
<input type="text" id="Name" name="Name" class="f-form-control" required>
</div>
</div>
<div class="f-form-group">
<label for="Email" class="f-label">Your email address</label>
<div class="f-input-group">
<input type="email" id="Email" name="Email" class="f-form-control" required>
</div>
</div>
<div class="f-form-group">
<label for="Message" class="f-label">Your message</label>
<div class="f-input-group">
<textarea id="Message" name="Message" class="f-form-control" rows="6" maxlength="3000" required></textarea>
</div>
</div>
<div class="f-form-group">
<button type="submit" id="f-button" class="f-btn f-btn-primary f-btn-block">Send Message</button>
</div>
<br>
</form>
</div>
</div>
</div>
<div class="bottom-container">
<p>
Part of<a href="https://www.manchesterbars.com/location-castlefield.htm" target="_blank">Castlefield Bars</a>
</p>
<a class="footer-link" href="aboutus.html">About Us</a>
<a class="footer-link" href="copyright.html">Copyright</a>
<a class="footer-link" href="gdpr.html">GDPR</a>
<a class="footer-link" href="contact.html">Contact Us</a>
<p>Opening hours:
<br>
Monday to Thursday: 5pm to 11pm
<br>
Friday and Saturday: 4pm to 2am
<br>
Sunday: 5pm to 10pm
<br>
--- 18-25 Castle St, Manchester, M3 4LZ ---</p>
</div>
</body>
</html>