-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
91 lines (77 loc) · 3.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/styles.css">
<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.4ourlife</title>
</head>
<body>
<!-- big hero image -->
<div class="bighero-img">
<!-- This is Nav Bar -->
<nav class="navbar">
<h1 class="logo">4ourlife</h1>
<ul class="nav-link">
<li><a href="index.html">Home</a> </li>
<li><a href="about.html">About</a> </li>
<li class="active"><a href="#">Contact</a> </li>
</ul>
</nav>
<!-- Header -->
<header>
<div class ="row">
<div class ="column">
<br>
<label for="first name">First Name:</label>
<input type="text" name="firstname">
<label for="last name">Last Name:</label>
<input type="text" name="lastname" id ="last name">
<label for="email">Email:</label>
<input type="email" name="email" id ="email">
<label for="phone">Phone:</label>
<input type="Tel" name="phone" id ="phone">
<div class="subject">
<label for="subject">Subject:</label>
<textarea id="subject" name="subject" placeholder="Write something.."
id="subject"></textarea>
</div>
<input type= "submit" value="Submit">
</br>
</div>
</div>
</header>
<!-- This is a map -->
<section>
<div class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d439313.72884066706!2d103.79535676373222!3d30.65822803620448!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x36efc52300447721%3A0xb98652ce2e240e02!2sChengdu%2C%20Sichuan%2C%20China!5e0!3m2!1sen!2sus!4v1644736824371!5m2!1sen!2sus"
width="100%" height="200px" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</section>
<!-- footer -->
<footer>
<div class="footer">
<div class="row">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-youtube"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
</div>
<div class="row">
<ul>
<li><a href="contact.html">Contact us</a></li>
<li><a href="#">Our Services</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Career</a></li>
</ul>
</div>
<div class="row">
Copyright © 2022 Final Project || Designed By: Jiaying Chen
</div>
</div>
</footer>
</body>
</html>