forked from AmandhaIsiri/movie-rental-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
109 lines (109 loc) · 3.26 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
106
107
108
109
<!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 | CineFlix Movie renting Platform</title>
<link rel="stylesheet" href="/styles/style.css" />
</head>
<body>
<!-- Staring header section -->
<div class="wrapper">
<div class="header">
<div class="header-content">
<div class="logo">
<h1>CINEFLIX</h1>
</div>
<ul class="nav-area">
<li><a href="/index.html">Home</a></li>
<li><a href="/store.html">Store</a></li>
<li><a href="/about.html">About us</a></li>
<li><a href="/contact.html">Contact us</a></li>
<li><a href="/login.html">Login</a></li>
<li><a href="/register.html">Register</a></li>
</ul>
</div>
</div>
</div>
<!-- End of header Section -->
<!-- Breadcrumb area -->
<div class="breadcrumb">
<h1 class="breadcrumb-title">Contact Us</h1>
</div>
<!-- End of breadcrumb -->
<!-- Contact form -->
<h1 class="title">Reach us</h1>
<div class="contact-wrapper">
<div class="contact-form">
<form action="">
<input
class="form-input"
type="text"
name="Name"
id=""
placeholder="Enter your Name..."
/>
<br />
<input
class="form-input"
type="email"
name="Name"
id=""
placeholder="Enter your Email..."
/>
<br />
<textarea
class="message-box"
name="text-area"
id=""
cols="30"
rows="10"
placeholder="Enter your Message..."
></textarea>
<br />
<button class="contact-us-btn" type="submit">Contact Us</button>
</form>
</div>
<!-- map area -->
<div class="map">
<div class="mapouter">
<div class="gmap_canvas">
<iframe
width="600"
height="500"
id="gmap_canvas"
src="https://maps.google.com/maps?q=2880%20Broadway,%20New%20York&t=&z=13&ie=UTF8&iwloc=&output=embed"
frameborder="0"
scrolling="no"
marginheight="0"
marginwidth="0"
></iframe
><a href="https://putlocker-is.org"></a><br /><style>
.mapouter {
position: relative;
text-align: right;
height: 500px;
width: 600px;
}</style
><a href="https://www.embedgooglemap.net"
>integrate google maps into website</a
><style>
.gmap_canvas {
overflow: hidden;
background: none !important;
height: 500px;
width: 600px;
}
</style>
</div>
</div>
</div>
</div>
<!-- footer -->
<div class="footer-section">
<h1 class="footer-logo">CINEFLIX</h1>
<p class="credits">© Copyright CineFlix Entertainment 2011 - 2022</p>
</div>
</body>
</html>