forked from Ducks404/IP-Assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
170 lines (157 loc) · 5.61 KB
/
contact.html
File metadata and controls
170 lines (157 loc) · 5.61 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<html>
<head>
<title>Contact Page</title>
<link rel="stylesheet" href="style.css">
<style>
/* Media query for phone screens */
@media only screen and (max-width: 600px) {
main {
padding: 20px 20px;
}
.movielist img {
margin-right: 10px;
margin-bottom: 10px;
}
.search-container {
width: 100%;
}
.nav-bar {
display: flex;
flex-direction: column;
align-items: center;
}
.login-box {
display: none;
}
}
body {
padding: 0;
margin:0;
}
main {
background: white;
padding: 0;
}
.form-control {
width: 500;
height: 40;
}
.flex-container {
display: flex;
align-content: space-between;
justify-content: space-between;
align-items: flex-start;
margin: 25px;
padding: 20px;
font-size: 20px;
color: black;
}
.half-screen-background {
background: linear-gradient(to bottom, rgba(0,0,0,0) 1%, rgba(0,0,0,1)), url("images/theater seats.webp");
background-repeat: no-repeat;
background-size:cover;
height: 50vh;
}
.text-container {
position: absolute;
color: white;
left: 2%;
top: 35%;
padding: 0.5rem;
font-size: 30px;
}
</style>
</head>
<body>
<header>
<div style="flex-grow: 1">
<figure>
<img alt="logo" title="MOViE LAND" width="300" src="images/logo.png" />
</figure>
</div>
<div style="flex-grow: 9">
<div class="search-container">
<img src="images/search.jpg" width="15" alt="Search" /> <input type="text" id="search-bar" placeholder="Type here to search..." style="width:60%;">
</div>
<div class="nav-bar">
<a href="index.html" class="nav-link">Home</a>
<a href="contact.html" class="nav-link">Contact Us</a>
<a href="#" class="nav-link">About us</a>
</div>
</div>
<div class="login-box">
<a href="#" class="login-link"><img src="images/profile.jpg" width="20" alt="login_profile" /></a>
</div>
<div class="login-box">
<a href="#" class="login-link"><img src="images/signup.jpg" width="20" alt="settings" /></a>
</div>
</header>
<main>
<div class="half-screen-background">
<div class="text-container">
<h1>We're here for you!</h1>
<h3>Our team is on hand to answer your enquiry.</h3>
</div>
</div>
<div class="flex-container">
<div>
<form action="" method="post">
<label for="name"><b> Name</b></label><br/>
<input type="text" class="form-control" id="name" name="user_name"><br/><br/>
<label for="mail"><b>*Email</b></label><br/>
<input type="text" class="form-control" id="email" name="user_email" value=""required><br/>
</div>
<div>
<label for="msg"><b>*Type your message:</b></label><br/>
<textarea class="form-control" id="message" name="user_message" required></textarea> <br/>
<button type="submit" style="width: 10vw; height: 5vh; font-size: 1.5vw;background-color: gray;">Send</button>
</form>
</div>
</div>
</main>
<footer>
<div id="footer-top">
<div id="connect">
<h6><b>Connect with us</b></h6>
<p>Reach us at <a href="mailto:some_account!!!">*@gmail.com</a> or through our <a href="contact-us.html">online contact form</a>.</p>
<div id="social-media">
<a href="youtube.com"><img src="images/youtube.jpg" width="40" alt="Youtube"></a>
<a href="instagram.com"><img src="images/instagram.jpg" width="40" alt="Instagram"></a>
<a href="facebook.com"><img src="images/facebook.jpg" width="40" alt="Facebook"></a>
<a href="linkedin.com"><img src="images/linkedin.jpg" width="40" alt="Linkedin"></a>
<a href="x.com"><img src="images/twitter.jpg" width="40" alt="X"></a>
</div>
<p>Have questions? Check our <a href="Frequent_questions.html">frequently asked questions</a>!</p>
</div>
<hr>
<div id="member">
<h6><b>Become a member!</b></h6>
<p>Join our 500,000 community members and get a decent discount on your weekend's movie nights!</p>
<div class="form-box">
<form>
<label for="email">Email:</label>
<input type="email" id='email' name='email' placeholder='Enter your email address...' required>
<button type="submit">Subscribe</button>
</form>
</div>
</div>
</div>
<hr style="width:100%;margin:0;">
<div id="footer-bottom">
<div>
<figure>
<img alt="logo" title="MOViE LAND" width="200" src="images/logo.png">
</figure>
</div>
<div id="extras">
<p><a href="About-us.html">About us</a></p>
<p><a href="Privacy_policy.html">Terms of use and privacy policy</a></p>
<p>© 2024 MOViE LAND</p>
</div>
</div>
</footer>
</body>
</html