Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
shravankrishnan007 authored Dec 16, 2023
1 parent 8e86760 commit 9329f7c
Show file tree
Hide file tree
Showing 26 changed files with 541 additions and 0 deletions.
184 changes: 184 additions & 0 deletions css/styles.css
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);
}
44 changes: 44 additions & 0 deletions html/login.html
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;">
&copy; 2023 MOVIE MAYHEM. All rights reserved.
</div>
</body>
</html>
54 changes: 54 additions & 0 deletions html/signup.html
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">
&copy; 2023 MOVIE MAYHEM. All rights reserved.
</div>

</body>
</html>
Binary file added images/amarkalam.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/arambam.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/asai.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/aval_varuvalla.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/batman.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/home.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/kadhal_mannan.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/login.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/mankatha.webp
Binary file not shown.
Binary file added images/movie.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/mugavaree.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/red.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/signup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thunivu.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/valee.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/veeram.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/vidamuyarchi.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/vishwasam.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/vivegam.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/yennaiarindhaal.webp
Binary file not shown.
Loading

0 comments on commit 9329f7c

Please sign in to comment.