-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathcontact.html
67 lines (66 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="animations.css">
<link rel="stylesheet" href="scontentcss.css">
<!-- <link rel="stylesheet" href="footercss.css"> -->
<link rel="stylesheet" href="counting.css">
<link rel="stylesheet" href="terms.css">
<link rel="stylesheet" href="contact.css">
<!-- Font Awesome CDN link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header>
<nav>
<!-- Wrap the logo text in an anchor tag -->
<a href="#hero" class="logo">मातृबोधः</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#wisdom">About</a></li>
<li class="dropdown">
<a href="#">Content</a>
<ul class="dropdown-content">
<li><a href="countingpage.html">Counting</a></li>
<li><a href="#">Days</a></li>
<li><a href="#">Activities</a></li>
</ul>
</li>
<li><a href="login.html">Login</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="toggle-menu">☰</div>
</nav>
</header>
<div class="contact-form">
<h1>Contact Us</h1>
<form>
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" placeholder="Enter the name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" placeholder="Enter the email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" placeholder="Type your Message here..." required></textarea>
</div>
<button type="submit">Submit</button>
</form>
</div>
<footer class="footer">
Made with <span class="heart">❤️</span> by
<a target="_blank" href="https://github.com/Anjaliavv51/Matrubodhah">
@Sakthi
</a>
</footer>
<script src="scrollscript.js"></script>
<script src="audio.js"></script>
</body>
</html>