-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
75 lines (71 loc) · 3.1 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
<!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="style.css" />
<script src="https://kit.fontawesome.com/b12be04dec.js" crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar bg-darkgreen">
<div class="container">
<img src="https://lifestylecollective2017.files.wordpress.com/2019/06/sustainable-living.jpg" alt="logo photo" width="100px">
<ul class="nav-items">
<li class="nav-item "><a href="/index.html" class="about-contact">Home</a></li>
<li class="nav-item"><a href="/map_locate/MapSearch.html" class="about-contact">Show Map</a></li>
<li class="nav-item"><a href="/custom_vision/results.html" class="about-contact">Classify Waste</a></li>
<li class="nav-item "><a href="/contact.html"class="about-contact" >Contact</a></li>
</ul>
</div>
</nav>
<section class="contact-form">
<div class="container">
<div class="company-address">
<div class="address-group">
<i class="fas fa-map-marker-alt text-white fa-3x" ></i>
<h2 class="text-white md-heading">Location</h2>
<p class="text-white">B-168 dda flats uttam nagar</p>
</div>
<div class="address-group ">
<i class="fas fa-envelope-square text-white fa-3x"></i>
<h2 class="text-white md-heading">Email</h2>
<p class="text-white">[email protected]</p>
</div>
</div>
<div class="form-wrapper">
<form action="" class="form">
<h1 class="lg-heading text-black form-heading">Contact Us</h1>
<p class="text-black"></p>
<div class="form-group">
<label for="username">Username</label>
<input type="text" name="" id="username" required>
</div>
<div class="form-group">
<label for="Phone">Phone</label>
<input type="text" name="" id="Phone" required>
</div>
<div class="form-group">
<label for="Email">Email</label>
<input type="email" name="" id="Email" required>
</div>
<div class="form-group">
<label for="Message">Message</label>
<textarea name="" id="message" ></textarea>
</div>
<button type="submit" class="form-btn">Submit</button>
</form>
</div>
</div>
</section>
<footer class="footers">
<div class="social-media">
<i class="fab fa-facebook fa-3x text-white"></i>
<i class="fab fa-instagram fa-3x text-white"></i>
<i class="fab fa-linkedin fa-3x text-white"></i>
</div>
<p class="text-white"> Be Eco © 2022 ,All Rights Reserved</p>
</footer>
</body>
</html>