-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-us.html
81 lines (79 loc) · 2.47 KB
/
contact-us.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Us</title>
<link rel="stylesheet" href="./assets/css/index.css" />
</head>
<body>
<nav class="navbar">
<div class="navLogo">
<h3>Swadnama</h3>
</div>
<div class="navRight">
<div class="navLinks">
<a href="./index.html">Home</a>
<a href="./index.html#business">Business</a>
<a href="./contact-us.html">Contact Us</a>
</div>
</div>
</nav>
<nav class="mobileNavbar">
<i class="fas fa-bars"></i>
</nav>
<main>
<section class="section5">
<h1 class="smallHeading">Contact Us</h1>
<form action="#">
<div class="inputGroup twoInputs">
<input type="text" placeholder="Name" />
<input type="email" placeholder="Email" />
</div>
<div class="inputGroup twoInputs">
<input type="text" placeholder="Name" />
<input type="email" placeholder="Email" />
</div>
<div class="inputGroup">
<textarea placeholder="Your Message" cols="30" rows="10"></textarea>
</div>
<div class="inputGroup">
<button type="submit">Send Message</button>
</div>
</form>
</section>
</main>
<footer class="footer">
<div class="footerTop">
<h3>Swadnama</h3>
<div>
<a href="./index.html#about">About Swadnama</a>
<a href="./index.html#business">Business</a>
<a href="./contact-us.html">Contact Us</a>
</div>
<div>
<a href="javascript:void(0)">Terms & Conditions</a>
<a href="javascript:void(0)">Privacy Policy</a>
<a href="javascript:void(0)">Sitemap</a>
</div>
<div>
<a href="http://instagram.com/">Instagram</a>
<a href="http://linkedin.com">Linkedin</a>
<a href="http://facebook.com/">Facebook</a>
</div>
</div>
<div class="footerBottom">
<div>Swadnama- Ghar ka Khana</div>
<div>Made in India</div>
</div>
</footer>
<!-- FontAwesome -->
<script
src="https://kit.fontawesome.com/7368c40b21.js"
crossorigin="anonymous"
></script>
<!-- End FontAwesome -->
<script src="./assets/js/index.js"></script>
</body>
</html>