From a8a9b565e57106044f10821c9754f571d6c44645 Mon Sep 17 00:00:00 2001 From: "shravan krishnan.g" <116860361+shravankrishnan007@users.noreply.github.com> Date: Sat, 16 Dec 2023 21:12:47 +0530 Subject: [PATCH] Add files via upload --- css/styles.css | 184 ++++++++++++++++++++++++++ html/login.html | 44 +++++++ html/signup.html | 54 ++++++++ images/amarkalam.jpeg | Bin 0 -> 11647 bytes images/arambam.jpg | Bin 0 -> 67114 bytes images/asai.jpeg | Bin 0 -> 8756 bytes images/aval_varuvalla.jpg | Bin 0 -> 146372 bytes images/batman.jpg | Bin 0 -> 1223526 bytes images/home.png | Bin 0 -> 1644 bytes images/kadhal_mannan.jpeg | Bin 0 -> 10569 bytes images/login.png | Bin 0 -> 2043 bytes images/logo.png | Bin 0 -> 2908 bytes images/mankatha.webp | Bin 0 -> 110622 bytes images/movie.jpg | Bin 0 -> 1075301 bytes images/mugavaree.jpeg | Bin 0 -> 11397 bytes images/red.jpg | Bin 0 -> 12825 bytes images/signup.png | Bin 0 -> 2974 bytes images/thunivu.jpg | Bin 0 -> 115321 bytes images/valee.jpg | Bin 0 -> 107762 bytes images/veeram.jpeg | Bin 0 -> 10520 bytes images/vidamuyarchi.jpg | Bin 0 -> 203192 bytes images/vishwasam.jpeg | Bin 0 -> 12603 bytes images/vivegam.jpg | Bin 0 -> 138550 bytes images/yennaiarindhaal.webp | Bin 0 -> 23614 bytes index.html | 256 ++++++++++++++++++++++++++++++++++++ js/script.js | 3 + 26 files changed, 541 insertions(+) create mode 100644 css/styles.css create mode 100644 html/login.html create mode 100644 html/signup.html create mode 100644 images/amarkalam.jpeg create mode 100644 images/arambam.jpg create mode 100644 images/asai.jpeg create mode 100644 images/aval_varuvalla.jpg create mode 100644 images/batman.jpg create mode 100644 images/home.png create mode 100644 images/kadhal_mannan.jpeg create mode 100644 images/login.png create mode 100644 images/logo.png create mode 100644 images/mankatha.webp create mode 100644 images/movie.jpg create mode 100644 images/mugavaree.jpeg create mode 100644 images/red.jpg create mode 100644 images/signup.png create mode 100644 images/thunivu.jpg create mode 100644 images/valee.jpg create mode 100644 images/veeram.jpeg create mode 100644 images/vidamuyarchi.jpg create mode 100644 images/vishwasam.jpeg create mode 100644 images/vivegam.jpg create mode 100644 images/yennaiarindhaal.webp create mode 100644 index.html create mode 100644 js/script.js diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..fd02e5c --- /dev/null +++ b/css/styles.css @@ -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); +} \ No newline at end of file diff --git a/html/login.html b/html/login.html new file mode 100644 index 0000000..ad16440 --- /dev/null +++ b/html/login.html @@ -0,0 +1,44 @@ + + +
+ + +MMnjrVxdA%l>y4A5c(Jt!C6!sa+3%VdZ64(`iM#tWJ@Cn
zUbLNxyj9X _QFlcN tz_P?ls#C$vwzDH#4 *VjzPNiWe)Z^83?m9HzpxK;EC^kv#Dh4S9UH$0SjT
z5Qh@v&}#qRw9;>5v6Q8e9E#L<)kXYe;aj2biDLIXy2pnR{QHc+z=Bjed5!hgX+_IE
z2+r)MS>DX}K~W1@SD <6Z$9BRBzsDy#wf{38w=R;A~Bnth4E_p~N
zC9_nDUG;G7oagH2=z*h
zWE0s$&c|y9am|W&N{VyGdEq6W&%Z$Fcn$7WXNTs~1y^Zya`!@7Zf|~?P>2~FI(YW2
zZx3GGh0|@C9ePVO9T#5TSVSI&!`Wv|!@fvAJWeYQ&xnbh%lw*V+8J88`{>Yk{m$ox
zwuL|UEJ)p){Yy=GaC^<(-{ZsIe~j$edc!ydc2ag8{r-fE42Fc$5va3O_m&l{@s@*z
zks+E0g2{^d-%gSYp$rk2$izqA-8>n8n1cFbosKqN#vH$>pU_~CrO#sSQ#VM#*x6A%
zx;^5Ri)q|!x4uny&e`(a?Z?J@g-B{xZc}D|R%yP^pVy-C6%Ci+Y!`-UHAO!y9M(o6
zFaFY;nm-Oa^^q?-r3UBhIpq~T!rDier~P!sBz&(}#@ZLt
zQv3w#9Mq+J261&Y
N`+UAi_?lD
zhOlklH^|=+Dp%>(M%h8dn%q>UVC2r)T_O5%uwZu5*FgH=nWJxT*c6;2NbucZ8b%=v
z1`Ajwk$_XEl!#QbUE|qRE7f3!rf)*OG{lD*k5#l=F!)58^4WUxAvrsZDtya5U427x
zly==5zdSrg!NdvF?`<#MJbvJ?1Dm*t76|TL=9Fsdhdtv$ZGN)lPHzQFTGJ(C%#Nxo
zb`%^E1_R;zx374@rjz61i6Bwmb)GT5{R1%FlX$gQzZQ_$7DXazpOOB@HwVP&F)Xf%
z1ZJoSJd8XfV%~!Nn*GVA{46faGY-U?^q(6^Su!Ef(^f%copDgKaQhMJzJU0oAYqR{jBS
zbKiZQ{B_T50{-0^{Q74(ht#W4tGXpkgG6T#Tt#g@umWunXka;qH`zYk#L#@CR^f#s
z*-pO!3tfI=O(eMZ50D-(f6Jx)E4kpA*Zks9`p07VimJLFe`;r?TDUWxdL|Pi5!_|S
zlml81m6l5S%XdhD8wyn>q(oLuxqtnOUP|>6Y3sM89ceG>okt|omX;cBss
E7>6B&4aO(jpnV9!}=qkmgx!=I|SV9AdLGK}YQ0K3(T=Z0>Q$b>jK){o+L
z