-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
105 lines (96 loc) · 4.08 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<link rel="stylesheet" href="contact.css">
</head>
<body>
<!--HEADER PART-->
<header class="header">
<a href="index.html" class="logo"><i class="uil uil-pagelines"></i>LEAF NOW</a>
<nav class="navbar">
<ul>
<li><a href="index.html#home">HOME</a></li>
<li><a href="index.html#about">ABOUT</a></li>
<li><a href="seedlink.html">SEEDLINK</a></li>
<li><a href="index.html#project">PROJECTS</a></li>
<li><a href="#donate">DONATE</a></li>
<li><a href="index.html#ourwork">OUR WORK</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="htdocs/account.html" class="user"><i class="uil uil-user"></i> Login</a></li>
</ul>
</nav>
<div class="fas fa-bars"></div>
</header>
<!--Home-->
<section class="home" id="home">
<h1>WANT TO KNOW MORE?</h1>
</section>
<!--CONTACT INFO-->
<section class="contact2">
<h2>WRITE TO US AND WE SHALL GET BACK TO YOU</h2>
<form action="contact.html" method="POST">
<div class="content">
<div class="input-items">
<label>Name</label>
<input type="text" placeholder="Name" required>
<label>Email</label>
<input type="email" placeholder="Email Address" required>
<label>Phone</label>
<input type="phone" placeholder="Mobile Number" required><br>
</div>
<div class="message">
<label>Message</label>
<input type="text" class="message2" placeholder="Message for us"><br>
</div>
<div class="submit">
<input type="button" class="btn" value="SUBMIT">
</div>
</div>
</form>
</section>
<!-- Bottom Footer-->
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>LeafNow</h4>
<ul>
<li><a href="#">about us</a></li>
<li><a href="index.html#projects">Our Projects</a></li>
<li><a href="seedlink.html">SeedLink</a></li>
<li><a href="#">privacy policy</a></li>
</ul>
</div>
<div class="footer-col">
<h4>get help</h4>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">shipping</a></li>
<li><a href="#">returns</a></li>
<li><a href="#">order status</a></li>
<li><a href="#">payment options</a></li>
</ul>
</div>
<div class="footer-col">
<h4>online shop</h4>
<ul>
<li><a href="#">Buy Plants</a></li>
<li><a href="#">Sell Plants</a></li>
<li><a href="#">Donate Plants</a></li>
</ul>
</div>
<div class="footer-col">
<h4>follow us</h4>
<div class="social-links">
<a href="https://www.facebook.com"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.twitter.com"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>