-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
134 lines (132 loc) · 4.54 KB
/
contact.html
File metadata and controls
134 lines (132 loc) · 4.54 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- start fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@100..900&display=swap" rel="stylesheet">
<!-- end fonts -->
<!-- start icons -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<!-- end icons -->
<link rel="stylesheet" href="styles.css">
<title>Contact Us - Rhino</title>
<style>
header {
background-image: none;
height: auto;
}
.header_hhh {
transform: translateY(-30px);
height: 150px;
display: flex;
align-items: center;
justify-content: center;
background-color: #c97a05;
color: #fff;
font-size: 45px;
font-weight: 500;
text-transform: uppercase;
}
</style>
</head>
<body>
<!-- start header -->
<header>
<div class="top_nav">
<div>
<i class='bx bx-phone'></i>
<p>Call : +01 12345678909</p>
</div>
<div>
<i class='bx bxl-facebook'></i>
<i class='bx bxl-twitter'></i>
<i class='bx bxl-linkedin'></i>
<i class='bx bxl-instagram'></i>
</div>
<div>
<i class='bx bx-phone'></i>
<p>demo@gmail.com</p>
</div>
</div>
<nav>
<a class="title" href="#">RHINO</a>
<input type="checkbox" id="menu-toggle">
<label for="menu-toggle" class="menu-icon">
<i class="fa-solid fa-bars"></i>
</label>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li><a href="staff.html">STAFF</a></li>
<li><a href="contact.html" class="active">CONTACT US</a></li>
<li><i class='bx bx-search-alt-2'></i></li>
</ul>
</nav>
<div class="header_hhh">
Contact Us
</div>
</header>
<!-- end header -->
<!-- start contact -->
<section class="contact">
<h2 class="sec_title">Contact</h2>
<div class="container">
<form>
<input type="text" placeholder="Name">
<input type="number" placeholder="Phone">
<input type="email" placeholder="Email">
<textarea>Message</textarea>
<button class="btn">Send</button>
</form>
<div>
<iframe src="https://www.google.com/maps/embed/v1/place?key=AIzaSyA0s1a7phLN0iaD6-UE7m4qP-z21pH0eSc&q=Eiffel+Tower+Paris+France"></iframe>
</div>
</div>
</section>
<!-- end contact -->
<!-- start footer -->
<footer>
<div class="top_footer">
<div class="card">
<b>RHINO</b>
<div>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.</div>
</div>
<div class="card">
<b>QUICK LINKS</b>
<div>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Projects</a>
<a href="#">Staff</a>
<a href="#">Contact Us</a>
</div>
</div>
<div class="card">
<b>INSTAGRAM FEEDS</b>
<div>
<img src="images/inst1.png" alt="">
<img src="images/inst2.png" alt="">
<img src="images/inst3.png" alt="">
<img src="images/inst4.png" alt="">
</div>
</div>
<div class="card">
<b>SIGN UP TO OUR NEWSLETTER</b>
<div>
<input type="email" placeholder="Enter Your Email">
<button>Sign Up</button>
</div>
</div>
</div>
<div class="down_footer">
<div>
© 2019 All Rights Reserved. Design by <a>Free Html Templates</a>
</div>
</div>
</footer>
<!-- end footer -->
</body>
</html>