-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
241 lines (238 loc) · 7.54 KB
/
contact.html
File metadata and controls
241 lines (238 loc) · 7.54 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<!doctype html>
<html lang="pl-PL">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lorem ipsum - CONTACT</title>
<link rel="icon" type="image/webp" sizes="32x32" href="img/icon.webp" />
<meta
name="description"
content="This is an example description and this is my website which is my project. This website is my property and was created to complete the course." />
<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=Roboto:ital,wght@0,100;1,100&display=swap"
rel="stylesheet" />
<link rel="preload" href="css/styleContact.css" as="style" />
<link rel="stylesheet" href="css/styleContact.css" />
</head>
<body>
<header>
<div class="loading-top"></div>
<div class="loading-bottom"></div>
<div class="navbar">
<a href="./index.html" class="logo"
><img
src="img/logo1transparent.webp"
alt="Logo"
loading="lazy"
width="80"
height="80"
/></a>
<nav>
<label id="hamburger" for="toggle">☰</label
><input type="checkbox" id="toggle" />
<ul class="navbar-links">
<li>
<a href="./index.html" class="nav__item"
><ruby
><img
src="img/home-alt.svg"
alt="home"
loading="lazy"
width="25"
height="25" />
<rt>HOME</rt>
</ruby></a
>
</li>
<li>
<a href="./aboutUs.html" class="nav__item"
><ruby
><img
src="img/collage.svg"
alt="collage"
loading="lazy"
width="25"
height="25" />
<rt>ABOUT US</rt>
</ruby></a
>
</li>
<li>
<a href="./services.html" class="nav__item"
><ruby
><img
src="img/ereader.svg"
alt="ereader"
loading="lazy"
width="25"
height="25" />
<rt>SERVICES</rt>
</ruby></a
>
</li>
<li>
<a href="./ourProducts.html" class="nav__item"
><ruby
><img
src="img/calendar-next.svg"
alt="calendar"
loading="lazy"
width="25"
height="25" />
<rt>PRODUCTS</rt>
</ruby></a
>
</li>
<li>
<a href="./gallery.html" class="nav__item"
><ruby
><img
src="img/color-bucket.svg"
alt="color-bucket"
loading="lazy"
width="25"
height="25" />
<rt>GALLERY</rt>
</ruby></a
>
</li>
<li>
<a href="./contact.html" class="nav__item"
><ruby
><img
src="img/phone.svg"
alt="phone"
loading="lazy"
width="25"
height="25" />
<rt>CONTACT</rt>
</ruby>
</a>
</li>
<li>
<a href="./faq.html" class="nav__item"
><ruby
><img
src="img/comment.svg"
alt="comment"
loading="lazy"
width="25"
height="25" />
<rt>FAQ</rt>
</ruby></a
>
</li>
</ul>
<ul style="margin-right: 10px">
<li>
<a href="./pay.html"
><ruby
><img
id="koszyk"
src="img/shopping-cart.svg"
alt="cart"
loading="lazy"
width="25"
height="25" />
<rt>CART</rt>
</ruby></a
>
</li>
</ul>
</nav>
</div>
</header>
<main>
<section class="section contact" id="contact">
<h1 style="display: none">.</h1>
<form class="form" action="#thankyou">
<h2>CONTACT US</h2>
<p>
<input
type="text"
name="name"
placeholder="Write your name here..."
title="Please fill out this field."
required />
</p>
<p>
<input
type="email"
name="email"
placeholder="Let us know how to contact you back..."
title="Please fill out this field."
required />
</p>
<p>
<input
type="date"
name="dob"
title="Please fill out this field."
required />
</p>
<p>
<input
type="tel"
name="phone"
placeholder="Your phone number..."
pattern="[0-9]{3}-[0-9]{3}-[0-9]{3}"
title="A phone number should be 123-456-789"
required />
</p>
<p>
<textarea
name="message"
placeholder="What would you like to tell us..."
title="Please fill out this field."
required
rows="5"></textarea>
</p>
<button type="submit">Send message</button>
<div>
<span class="phone"></span> 123 456 789
<span class="contakt"></span> contact@company.com
</div>
</form>
</section>
<div id="thankyou">
<div class="thankyou-content">
<p>Udało ci się wysłać wiadomość. Miłego dnia!</p>
</div>
</div>
</main>
<footer>
<a href="https://www.facebook.com/" class="social__link"
><img src="img/facebook.svg" alt="Facebook" width="30" height="30"
/></a>
<a href="https://www.instagram.com/" class="social__link"
><img src="img/instagram.svg" alt="Instagram" width="30" height="30"
/></a>
<a href="https://www.youtube.com/" class="social__link"
><img src="img/youtube.svg" alt="Youtube" width="30" height="30"
/></a>
<a href="https://www.twitter.com/" class="social__link"
><img src="img/twitter.svg" alt="Twitter" width="30" height="30"
/></a>
<div class="footer">
<p>
The rights to the navbar icons belong to
<a href="https://www.flaticon.com/" class="footer__link">FLATION</a>
</p>
<p class="footer__text">
All rights reserved © 2023 Lorem ipsum |
<a href="./privacy.html" class="footer__link">Privacy Policy</a>
</p>
</div>
<p>
<a href="https://jigsaw.w3.org/css-validator/check/referer">
<img
style="border: 0; width: 88px; height: 31px"
src="https://jigsaw.w3.org/css-validator/images/vcss"
alt="Poprawny CSS!" />
</a>
</p>
</footer>
</body>
</html>