Skip to content

Commit

Permalink
Merge pull request #9 from tanishkkkaa/tanishkaas
Browse files Browse the repository at this point in the history
added new stuff
  • Loading branch information
irohanrajput authored Jun 18, 2023
2 parents acb42b0 + 6a5caa8 commit 5cf4476
Show file tree
Hide file tree
Showing 8 changed files with 221 additions and 28 deletions.
36 changes: 27 additions & 9 deletions advent_page/adventure.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
<link rel="stylesheet" href="styles.css">
<title>Trip Planning Website</title>
</head>
<body>
<body></body>

<div class="top"><h1>Ready to turn your life upside down ??</h1></div>
<section class="book" id="book"></section>
<h1 class="heading">
Expand All @@ -22,15 +23,19 @@ <h1 class="heading">
<span>r</span>
<span>t</span>
<span class="space"></span>
<span>f</span>
<span>l</span>
<span>y</span>
<span>i</span>
<span>n</span>
<span>o</span>
<span>w</span>
<span>g</span>
</h1>
<main>
<!--surprise section starts-->
<form action="#" method="post">
<h2>Tell us something about you</h2>
<form action="#" method="post" id="MyForm">
<h2 class="z">tell us something about you</h2>
<br>
<div class="cl">
<h3>You Like</h3>
<div class="likes">
<input type="checkbox" id="dance" name="likes">
Expand All @@ -48,6 +53,8 @@ <h3>You Like</h3>
<input type="checkbox" id="other" name="likes">
<label for="other">Nahh!! I just want peace</label>
</div>
</div>
<div class="cl">
<h3>You're okay with</h3>
<div class="dislikes">
<input type="checkbox" id="smoking" name="dislikes">
Expand All @@ -65,6 +72,8 @@ <h3>You're okay with</h3>
<input type="checkbox" id="other" name="dislikes">
<label for="other">Others</label>
</div>
</div>
<div class="cl">
<h3>Enter Your Age Group:-</h3>
<div class="age-g">
<input type="radio" name="age-g" id="one">
Expand All @@ -82,6 +91,8 @@ <h3>Enter Your Age Group:-</h3>
<input type="radio" name="age-g" id="four">
<label for="four">>45yrs</label>
</div>
</div>
<div class="cl">
<label id="location"><h3>This time you wanna see the:</h3>
<select id="location">
<option value="">Select an Option</option>
Expand All @@ -92,6 +103,8 @@ <h3>Enter Your Age Group:-</h3>
<option value="5">adventurous trip</option>
</select>
</label>
</div>
<div class="cl">
<h3>Solo or You've got a group ??</h3>
<div class="solo">
<input type="radio" id="package" name="solo">
Expand All @@ -101,6 +114,8 @@ <h3>Solo or You've got a group ??</h3>
<input type="radio" id="strangers" name="solo">
<label for="Want To Travel With Strangers">Yeah, I'll go Solo</label>
</div>
</div>
<div class="cl">
<h3>If Travelling Solo:-</h3>
<ul>
<li><h4>New People you want to meet should be:</h4>
Expand All @@ -117,7 +132,7 @@ <h3>If Travelling Solo:-</h3>
<input type="radio" id="dont-care" name="category">
<label for="dont-care">I don't care, Just connect me with new people</label>
</div>


<li><h4>Do You Want To Be a Part Of Whatsapp Group?</h4></li>
<div class="group">
Expand All @@ -127,10 +142,12 @@ <h3>If Travelling Solo:-</h3>
<div class="group">
<input type="checkbox" id="no" name="group">
<label for="yes">No</label>
</div></ul>
</div></ul></div>
<div class="cl">
<div class="team"><h3>If Travelling With Someone:</h3>
<label for="figure">Enter Team Size: <input id="figure" name="figure" type="number" min="0" max="10"></label>
</div>
</div></div>
<div class="cl">
<h3>How much You're willing to pay for this Adventure</h3>
<div class="budget">
<input type="radio" id="one" name="budget">
Expand All @@ -151,8 +168,9 @@ <h3>How much You're willing to pay for this Adventure</h3>
<input type="radio" id="rich" name="budget">
<label for="other">Whatever, I'm rich :D</label>
</div>
</div>
<input type="submit" value="Submit" />
</form>
<button type="submit" value="submit">Submit</button>
</main>
</body>
</html>
Binary file added advent_page/img/animation.mp4
Binary file not shown.
49 changes: 37 additions & 12 deletions advent_page/styles.css
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
body {
background-image: url(./img/banner.png);
background-repeat: no-repeat;
background-size: cover;
width: 100%;

background: url(img/banner.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
margin: 0;
padding: 0;
}
main{
border: 3px solid;
padding: 10px 10px;
margin: 150px auto ;
color: black;
width: 50%;
max-width: 800px;
background-color: rgba(255, 255, 255, 0.6);
margin-top: 20px;
font: bold;
border: 2px solid;

}
h1{
text-align: center;
Expand All @@ -23,21 +26,22 @@ h1{
}
button{
display: block;
width: 20%;
width: 75%;
margin: 1em auto;
height: 2em;
font-size: 1.1rem;
border-radius: 20px;
border-color: white;
min-width: 200px;
background: linear-gradient(to right, rgb(247, 231, 206), rgb(255, 253, 208));
}
.heading {
text-align: center;
padding:2.5rem 0;
text-transform: capitalize;
}
.heading span {
font-size: 2.5rem;
background: rgba(255,165,0,.5);
font-size: 3.0rem;
background: rgba(255,165,0,.8);
color:var(--main-color);
border-radius: .5rem;
padding:.2rem 1rem;
Expand All @@ -47,16 +51,37 @@ button{
background:none;
}
.top{
background: linear-gradient(to right, rgb(247, 231, 206), rgb(255, 253, 208));
background: linear-gradient(to right, rgba(255,165,0,0.5), rgb(255, 253, 208));
width: 40%;
text-align: center;
margin-left: auto;
margin-right: auto;
border-radius: 10%;
text-transform: capitalize;
}
@media (max-width: 600px) {

}

@media (max-width: 900px) {
}
}

input[type="submit"] {
display: block;
width: 60%;
margin: 1em auto;
height: 2em;
font-size: 1.1rem;
min-width: 300px;
border: 1px solid #0a0a23;
background: linear-gradient(to right, rgba(255,165,0,0.5), rgb(255, 253, 208));
}
/* .cl{
background-color: rgb(255, 253, 208,0.5);
border-radius: 2px;
}*/
.z{
font-size: 40px;
text-transform: capitalize;
text-align: center;
}
Binary file added book-section/imagess/book-img.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions book-section/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!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">
<link rel="stylesheet" href="styles.css">
<title>Document</title>
</head>
<body>

</body>
</html>
<section class="book" id="book">

<h1 class="heading">
<span>b</span>
<span>o</span>
<span>o</span>
<span>k</span>
<span class="space"></span>
<span>n</span>
<span>o</span>
<span>w</span>
</h1>

<div class="row">
<div class="image">
<img src="imagess/book-img.jpg" alt="">
</div>

<form action="">

<div class="inputBox">
<h3>where to</h3>
<input type="text" placeholder="place name">
</div>
<div class="inputBox">
<h3>how many</h3>
<input type="number" placeholder="number of guests">
</div>
<div class="inputBox">
<h3>arrivals</h3>
<input type="date" placeholder="number of guests">
</div>
<div class="inputBox">
<h3>leaving</h3>
<input type="date" placeholder="number of guests">
</div>
<input type="submit" class="btn" value="book now">
</form>
</div>
</section>
96 changes: 96 additions & 0 deletions book-section/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
* {
margin:0;
padding:0;
box-sizing:border-box;
list-style-type: none;
text-decoration: none;
outline:none;
border:none;
text-transform: capitalize;
transition: all .2s linear;
}
*::selection {
background:var(--main-color);
color:#fff;
}
html {
font-size:62.5%;
overflow-x:hidden;
scroll-padding-top:6rem;
scroll-behavior: smooth;
}
body {
font-family: 'Nunito', sans-serif;
height:2000px;
}

button,input[type="submit"] {
cursor:pointer;
}
section {
padding:2rem 9%;
}
.btn {
display:inline-block;
margin-top:1rem;
background: var(--main-color);
color:#fff;
padding:.8rem 3rem;
border:.2rem solid var(--main-color);
cursor:pointer;
font-size:1.7rem;
}
.btn:hover {
background: rgba(255, 165, 0,0.2);
color:var(--main-color);
}
.heading {
text-align: center;
padding:2.5rem 0;
/* margin-bottom: 100px; */
}
.heading span {
font-size: 4.5rem;
background: rgba(255,165,0,.5);
color:var(--main-color);
border-radius: .5rem;
padding:.2rem 1rem;

}
.heading span.space {
background:none;
}
.book .row {
display: flex;
flex-wrap: wrap;
gap:1.5rem;
align-items:center
}
.book .row .image {
flex:1 1 40rem;
}
.book .row .image img {
width:100%;
}
.book .row form {
flex:1 1 40rem;
padding:2rem;
box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
border-radius: .5rem;
}
.book .row form .inputBox {
padding:.5rem 0;
}
.book .row form .inputBox input {
width:100%;
padding:1rem;
border:.1rem solid rgba(0,0,0,.1);
font-size:1.7rem;
color:#333;
text-transform: none ;
}
.book .row form .inputBox h3 {
font-size: 2rem;
padding:1rem 0;
color:#666;
}
7 changes: 5 additions & 2 deletions landing_page/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@
</a>

<a href="#" class="logo">
<img src="./assets/images/uplogo.svg" alt="UpInTheSky logo">
background-repeat: no-repeat;
background-size: cover;
width: 100%;
background-position: center; <img src="./assets/images/uplogo.svg" alt="UpInTheSky logo">
</a>

<div class="header-btn-group">
Expand Down Expand Up @@ -147,7 +150,7 @@ <h3 class="front-text">
<div class="btn-group">
<button class="btn btn-primary"><a href="../advent_page/adventure.html"> Some Adventure ?? </a></button>

<button class="btn btn-secondary">Book now</button>
<button class="btn btn-secondary"><a href="../book-section/index.html">Book now</a></button>
</div>

</div>
Expand Down
8 changes: 3 additions & 5 deletions login_page/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@ body {
gap: 30px;
background-color: rgb(231, 231, 231);
background-image: url(imagess/login1.jpeg);
background-repeat: no-repeat;
background-size:cover;
width: 100%;


background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

header {
Expand Down

0 comments on commit 5cf4476

Please sign in to comment.