-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
47 lines (39 loc) · 1.11 KB
/
Copy pathcontact.html
File metadata and controls
47 lines (39 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FinSync - Contact</title>
<link rel="stylesheet" href="cap.css">
</head>
<body>
<header>
<h1>FinSync</h1>
<nav>
<a href="home.html">HOME</a>
<a href="about.html">ABOUT</a>
<a href="services.html">SERVICES</a>
<a href="tools.html">TOOLS</a>
<a href="contact.html" class="active">CONTACT</a>
</nav>
</header>
<div class="container">
<img src="https://images.unsplash.com/photo-1525182008055-f88b95ff7980" class="page-banner">
<h2>Contact Us</h2>
<p style="margin-bottom: 15px;">Have questions? We’re here to help you.</p>
<form>
<label>Name:</label>
<input type="text" required>
<label>Email:</label>
<input type="email" required>
<label>Message:</label>
<textarea rows="5" required></textarea>
<div style="text-align: center;">
<button class="btn" type="submit">Send Message</button>
</div>
</form>
</div>
<footer>
<p>Turning Your Goals into Reality | Designed by Ayan Ahmad</p>
</footer>
</body>
</html>