-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fed37e8
commit a8a9b56
Showing
26 changed files
with
541 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap'); | ||
|
||
body { | ||
font-family: 'Nunito', sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
section::before { | ||
content: ""; | ||
display: block; | ||
height: 90px; | ||
margin-top: -90px; | ||
visibility: hidden; | ||
pointer-events:none; | ||
} | ||
|
||
.button-box{ | ||
display: flex; | ||
} | ||
|
||
.button-box-features{ | ||
background-color: rgb(157, 51, 51); | ||
color: #fff; | ||
border-radius: 20px; | ||
width: 430px; | ||
margin: 15px; | ||
padding: 15px; | ||
text-align: center; | ||
font-weight: bolder; | ||
} | ||
|
||
.button-box-features:hover{ | ||
background-color: rgb(255, 87, 87) ; | ||
} | ||
|
||
header { | ||
background-color: rgb(157, 51, 51); | ||
color: #fff; | ||
/*padding: 10px;*/ | ||
text-align: center; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
position: fixed; | ||
top: 0; | ||
width: 100%; | ||
z-index: 1000; | ||
} | ||
|
||
.footer { | ||
background-color: #333; | ||
color: #fff; | ||
padding: 20px; | ||
text-align: center; | ||
bottom: 0; | ||
} | ||
|
||
nav a{ | ||
color: #fff; | ||
text-decoration: none; | ||
padding: 10px; | ||
margin: 0 10px; | ||
} | ||
|
||
/* | ||
nav a:hover { | ||
background-color: #a4dbff; | ||
}*/ | ||
.nav1{ | ||
color: #fff; | ||
text-decoration: none; | ||
padding: 10px; | ||
margin: 0 10px; | ||
|
||
} | ||
.nav1:hover{ | ||
border-radius: 20px; | ||
background-color: rgb(255, 87, 87); | ||
} | ||
.welcome-section { | ||
position: relative; | ||
text-align: center; | ||
color: #fff; | ||
background: url('../images/movie.jpg') center/cover no-repeat; | ||
padding: 200px; | ||
} | ||
|
||
.welcome-text { | ||
font-size: 100px; | ||
font-weight: bold; | ||
} | ||
|
||
.houses-section { | ||
background-color: #ffffff; | ||
padding: 20px; | ||
display: flex; | ||
justify-content: space-around; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.house-box { | ||
border-radius: 30px; | ||
width: 200px; | ||
margin: 15px; | ||
padding: 15px; | ||
/*border: 1px solid #ccc;*/ | ||
background-color: #fff; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
/*text-align: center;*/ | ||
} | ||
|
||
.house-box-info{ | ||
font-size: 20px; | ||
margin-left: 20px; | ||
} | ||
|
||
.house-image { | ||
border-radius: 30px; | ||
max-width: 100%; | ||
height: 450px; | ||
} | ||
|
||
.heading { | ||
font-size: 50px; | ||
font-weight: bold; | ||
color: rgb(157, 51, 51); | ||
padding: 10px; | ||
text-align: center; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
.heading-style{ | ||
background-color: rgb(157, 51, 51); | ||
color: #fff ; | ||
border-radius: 10px; | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
} | ||
|
||
.space { | ||
padding: 20px; | ||
} | ||
|
||
/*form sell proporities*/ | ||
form { | ||
width: 500px; | ||
background-color: #fff; | ||
padding: 20px; | ||
border-radius: 30px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
label { | ||
display: block; | ||
margin-bottom: 8px; | ||
font-weight: bold; | ||
} | ||
|
||
input, | ||
select,textarea { | ||
width: 100%; | ||
padding: 10px; | ||
margin-bottom: 16px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
box-sizing: border-box; | ||
font-size: 16px; | ||
} | ||
|
||
button { | ||
background-color: rgb(157, 51, 51); | ||
color: #fff; | ||
padding: 12px 20px; | ||
border: none; | ||
border-radius: 20px; | ||
cursor: pointer; | ||
font-size: 16px; | ||
} | ||
|
||
button:hover { | ||
background-color: rgb(255, 87, 87); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>MOVIE MAYHEM</title> | ||
<link rel="stylesheet" href="../css/styles.css"> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<h1 style="margin-left: 80px;"><img src="../images/logo.png" width="30px"> MOVIE MAYHEM.</h1> | ||
<nav style="margin-right: 70px;"> | ||
<a href="../index.html"><abbr title="Home"><img src="../images/home.png" width="30px"></abbr></a> | ||
<a href="../html/login.html"><abbr title="Login"><img src="../images/login.png" width="30px"></abbr></a> | ||
<a href="../html/signup.html"><abbr title="Sign up"><img src="../images/signup.png" width="30px"></abbr></a> | ||
</nav> | ||
</header> | ||
|
||
<!-- Rest of your website content goes here --> | ||
<section id="sell" style="padding-top: 100px;"> | ||
<div class="heading"><span class="heading-style">Login</span> in.</div> | ||
<div class="houses-section"> | ||
<div> | ||
<form> | ||
<label for="name">Username:</label> | ||
<input type="text" id="name" name="name" maxlength="24" required placeholder="username"> | ||
|
||
<label for="Address">Password:</label> | ||
<input type="text" name="password" id="password"required placeholder="password"> | ||
|
||
<button type="submit">Submit</button> | ||
</form> | ||
|
||
</div> | ||
</div> | ||
</section> | ||
|
||
<div class="space"></div> | ||
<div class="footer" style="width: 100%;position: fixed;"> | ||
© 2023 MOVIE MAYHEM. All rights reserved. | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>MOVIE MAYHEM</title> | ||
<link rel="stylesheet" href="../css/styles.css"> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<h1 style="margin-left: 80px;"><img src="../images/logo.png" width="30px"> MOVIE MAYHEM.</h1> | ||
<nav style="margin-right: 70px;"> | ||
<a href="../index.html"><abbr title="Home"><img src="../images/home.png" width="30px"></abbr></a> | ||
<a href="../html/login.html"><abbr title="Login"><img src="../images/login.png" width="30px"></abbr></a> | ||
<a href="../html/signup.html"><abbr title="Sign up"><img src="../images/signup.png" width="30px"></abbr></a> | ||
</nav> | ||
</header> | ||
|
||
<!-- Rest of your website content goes here --> | ||
<section id="sell" style="padding-top: 100px;"> | ||
<div class="heading"><span class="heading-style">sign</span> up.</div> | ||
<div class="houses-section"> | ||
<div> | ||
<form> | ||
<label for="name">Username:</label> | ||
<input type="text" id="name" name="name" maxlength="24" required placeholder="username"> | ||
|
||
<label for="Address">Password:</label> | ||
<input type="text" name="password" id="password"required placeholder="password"> | ||
|
||
<label for="Address">Re-enter Password:</label> | ||
<input type="text" name="password" id="re-password"required placeholder="password"> | ||
|
||
<label for="mobile number">Mobile Number:</label> | ||
<input type="tel" id="mobile number" name="mobile number" required placeholder="+91 1234567890"> | ||
|
||
<label for="Email">Email Address:</label> | ||
<input type="email" id="mobile number" name="mobile number" required placeholder="[email protected]"> | ||
|
||
<button type="submit">Submit</button> | ||
</form> | ||
|
||
</div> | ||
</div> | ||
</section> | ||
|
||
<div class="space"></div> | ||
<div class="footer"> | ||
© 2023 MOVIE MAYHEM. All rights reserved. | ||
</div> | ||
|
||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Oops, something went wrong.