generated from koldovsky/html-template-autocheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.contacts.partial.html
44 lines (39 loc) · 1.18 KB
/
index.contacts.partial.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
<section id="contacts" class="contacts-block">
<h2 class="contacts__title">Contacts</h2>
<p class="contacts__description">
ASK US ANYTHING. Feel free to contact us to ask any question or sign up for
a lesson:
</p>
<div class="contact-details">
<div class="address">
<p><strong>Address:</strong> 104-58 109th St, Jamaica, NY 11419, USA</p>
</div>
<div class="phone">
<p><strong>Contacts:</strong> +1 (234) 567 89 00</p>
</div>
<div class="email">
<p><strong>Email:</strong> [email protected]</p>
</div>
</div>
<div class="registration-form">
<form action="submit_form.php" method="post">
<input
type="text"
name="full-name"
placeholder="Enter your full name"
required
/>
<input type="tel" name="phone" placeholder="Enter your phone" required />
<input
type="email"
name="email"
placeholder="Enter your email"
required
/>
<input type="date" name="date" placeholder="Enter your date" required />
<button type="submit" class="signup-button">
Sign up for a free training
</button>
</form>
</div>
</section>