-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
68 lines (62 loc) · 2.65 KB
/
contact.html
File metadata and controls
68 lines (62 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/responsive.css">
<link rel="icon" href="assets/images/favicon/circle-icon.png" type="image/png">
<title>Circle Agency - Contact</title>
</head>
<body>
<div class="container-section no-margin-top">
<!-- Header Component (Injected) -->
<div class="header-component">
</div>
</div>
<main>
<div class="container-section no-margin-top" id="form">
<!-- Formulario de contacto -->
<section class="contact-section">
<h2>Contact Us</h2>
<form id="contact-form">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" placeholder="Enter your full name" required>
<p class="error" id="name-error"></p>
</div>
<div class="form-row">
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email address" required>
<p id="email-error" class="error"></p>
</div>
<div class="form-group">
<label for="phone">Phone</label>
<input type="phone" id="phone" name="phone" placeholder="Enter your phone number" required>
<p id="phone-error" class="error"></p>
</div>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="4" placeholder="Write your message here..."
required></textarea>
<p id="message-error" class="error"></p>
</div>
<button type="submit" class="btn">Submit</button>
</form>
</section>
</div>
<!-- Scroll Up Component (Injected) -->
<section class="scroll-up-component">
</section>
</main>
<div class="container-section margin-bottom">
<!-- Footer Component (Injected) -->
<div class="footer-component">
</div>
</div>
<script src="./js/contact.js"></script>
<script src="./js/components.js"></script>
</body>
</html>