generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact.html
119 lines (119 loc) · 6.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Interior Design, Athlone, Ireland">
<meta name="keywords" content="interior design, interior, design, athlone, ireland">
<title>Interior Design</title>
<link rel="apple-touch-icon" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Hind+Guntur:wght@300&family=Montserrat+Alternates:wght@300;400&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Interior Design</h1>
<label for="nav-toggle" class="nav-toggle-label" aria-label="Menu">
<i class="fa-solid fa-bars"></i>
</label>
<input type="checkbox" id="nav-toggle">
<nav>
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="form-background">
<h2>We offer a free consultation.</h2>
<form id="contact-form" action="thank_you.html" method="get">
<h3>CONTACT US</h3>
<label for="fname"><strong>First Name*</strong></label><br>
<input type="text" name="first_name" id="fname" placeholder="Enter your name" required><br>
<label for="lname"><strong>Last Name*</strong></label><br>
<input type="text" name="last_name" id="lname" placeholder="Enter your Last Name" required><br>
<label for="phone"><strong>Phone Number</strong></label><br>
<input type="tel" name="phone" id="phone" placeholder="123456789" pattern="[0-9]+"><br>
<label for="email_address"><strong>E-Mail*</strong></label><br>
<input type="email" name="email_address" id="email_address" placeholder="example@idesign.com" required><br>
<label for="message"><strong>Message</strong></label><br>
<!-- Textarea code from https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_contact_form-->
<textarea id="message" name="message" placeholder="Your message"></textarea><br>
<input type="submit" value="Submit">
</form>
</section>
<section id="times">
<div id="times-container">
<div class="contact-details">
<h3>Get in touch</h3>
<div>
<span>Phone:</span>
<span>+35387711787</span>
</div>
<div>
<span>Email:</span>
<span>idesign@design.com</span>
</div>
</div>
<div>
<h3>Address</h3>
<p>Interior Design <br> River St, <br> Athlone, <br>Co. Westmeath</p>
</div>
<div>
<table class="table-format">
<tr>
<th class="table-times hidden-heading">Open</th>
<th class="table-times">Open</th>
<th class="table-times">Close</th>
</tr>
<tr>
<td>Mon. - Wed.</td>
<td>08:30</td>
<td>17:30</td>
</tr>
<tr>
<td>Thur. - Fri.</td>
<td>10:00</td>
<td>19:00</td>
</tr>
</table>
</div>
</div>
</section>
</main>
<footer>
<ul id="social-networks">
<li class="instagram">
<a href="https://www.instagram.com/" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in new tab)">
<i class="fa-brands fa-instagram"></i></a>
</li>
<li class="facebook">
<a href="https://www.facebook.com/" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in new tab)">
<i class="fa-brands fa-square-facebook"></i></a>
</li>
<li class="houzz">
<a href="https://www.houzz.com/" target="_blank" rel="noopener"
aria-label="Visit our Houzz page (opens in new tab)">
<i class="fa-brands fa-houzz"></i></a>
</li>
<li class="pinterest">
<a href="https://www.pinterest.com/" target="_blank" rel="noopener"
aria-label="Visit our Pinterest page (opens in new tab)">
<i class="fa-brands fa-pinterest-p"></i></a>
</li>
</ul>
<p>©2023 Interior Design "All Rights Reserved"</p>
</footer>
<script src="https://kit.fontawesome.com/3b20d96fa9.js" crossorigin="anonymous"></script>
</body>
</html>