Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
169 changes: 169 additions & 0 deletions Section B/1905373_practical5.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,169 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhai&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practical 5</title>
</head>
<style>
body{
background-image: url('nature.jpg');
background-repeat: no-repeat;
font-family: 'Baloo Bhai', cursive;
color: white;
margin: 0px;
padding: 0px;
}
nav{
color: white;
}
.left {
display: inline-block;
position: absolute;
left: 60px;
top: 20px;
}


.left div {
line-height: 19px;
font-size: 26px;
text-align: center;
}

.mid {
display: block;
width: 36%;
margin: 29px auto;

}

.right {
position: absolute;
right: 34px;
top: 43px;
display: inline-block;

}

.navbar {
display: inline-block;
}

.navbar li {
display: inline-block;
font-size: 25px;
}

.navbar li a {
color: white;
text-decoration: none;
padding: 34px 23px;

}

.navbar li a:hover,
.navbar li a.active {
text-decoration: underline;
color: rgb(87, 192, 119);

}

.btn {
font-family: 'Baloo Bhai', cursive;
margin: 0px 9px;
background-color: black;
color: white;
padding: 4px 14px;
border: 2px solid grey;
border-radius: 10px;
font-size: 20px;
cursor: pointer;
}

.btn:hover {
background-color: rgb(31, 30, 30);
}

.container {
border: 2px solid white;
margin: 106px 80px;
padding: 75px;
width: 33%;
border-radius: 28px;
}

.form-group input {
font-family: 'Baloo Bhai', cursive;
text-align: center;
display: block;
width: 508px;
padding: 1px;
border: 2px solid black;
margin: 11px auto;
font-size: 25px;
border-radius: 8px;
}

.container h1 {
text-align: center;
}

.container button {
display: block;
width: 74%;
margin: 20px auto;
}

</style>
<body>

<header class="header">
<div class="left">

<div>Back To Nature</div>
</div>
<!-- Mid box for navbar -->
<div class="mid">
<ul class="navbar">
<li><a href="#" class="active">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>

<!-- Right box for buttons -->
<div class="right">
<button class="btn">Call Us Now</button>
<button class="btn">Email Us</button>
</div>
</header>
<div class="container">
<h1>Join to Save the nature</h1>
<form action="noaction.php">
<div class="form-group">
<input type="text" name="" placeholder="Enter your Name">
</div>
<div class="form-group">
<input type="text" name="" placeholder="Enter your Age">
</div>
<div class="form-group">
<input type="text" name="" placeholder="Enter your Gender">
</div>
<div class="form-group">
<input type="text" name="" placeholder="Enter your Locality">
</div>
<div class="form-group">
<input type="text" name="" placeholder="Enter your Email Id">
</div>
<div class="form-group">
<input type="text" name="" placeholder="Enter your Phone Number">
</div>
<button class="btn">Submit</button>
</form>
</div>
</body>
</html>