WT Practical File Harshita Gupta COMPLETE
WT Practical File Harshita Gupta COMPLETE
Technical Campus
VIVEKANANDA SCHOOL OF INFORMATION TECHNOLOGY
21 Website 2/11/2024
Q1. Make 5 different web pages out of which first page is your home page
with links to other four pages. The rest of the pages should have following :
i) Formatting styles and headings: include bold, italics, underline, strike,
subscript, superscript and all six types of headings ii) about font styles and
image tag. iii) Marquee: Move text, image and hyperlink. iv) Other tags: br,
hr, pre and p Include the following specifications:
• In all these webpages only mention about use, attributes apply them
. • Insert a background image on home page.
• Make all the topics as hyperlinks on this page and go to some other page
for description
• Insert a marquee showing “HTML TUTORIAL” as moving text.
• Use different font style for different topics
• On every page, make a hyperlink for going back to home page and
internal link also
CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h1>HOME PAGE</h1>
</body>
</html>
Page 1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
</body>
</html>
Page 2
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
</head>
<body>
</body>
</html>
Page 3
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Marquee Example</title>
</head>
<body>
</body>
</html>
Page 4
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<br>
<hr>
<pre>
</pre>
</body>
</html>
Page 5
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
background-image: url('background.jpg');
background-size: cover;
</style>
</head>
<body>
</body>
</html>
OUTPUT:
Q2 Create an unordered list nested inside ordered list and apply the
following:
• Insert an image of Main item on top right corner of web page.
• Display heading as Marquee
. • Use different font styles and colors for different ordered list items.
CODE
<html>
<head>
<style>
.img {
position: absolute;
top: 10px;
right: 10px;
width: 100px;
.marquee {
font-size: 24px;
.list {
color: red;
.list2 {
color: green;
.list3 {
color: blue;
.one {
margin-bottom: 10px;
ol li::after{
content: "";
display: block;
margin-top: 10px;
</style>
</head>
<body>
<ol class="one">
<ul>
<li class="list">Agriculture</li>
<li class="list2">Fishing</li>
<li class="list3">Dairy</li>
</ul>
</li>
<ul>
</ul>
</li>
<li class="list3">Tertiary Sector
<ul>
</ul>
</li>
</ol>
</body>
</html>
OUTPUT
Q3. Design a table with row span and column span and make use of
attributes colspan, rowspan, width, height, cellpadding, cellspacing etc
CODE
<html>
<head>
<style>
.table {
width: 80%;
border-collapse: collapse;
height: 45%;
.heading{
padding: 20px;
text-align: center;
border-spacing: 30px;
</style>
</head>
<body>
<h2>Table </h2>
<table class="table">
<tr>
</tr>
<tr>
<th class="heading">Maths</th>
<th class="heading">WT</th>
</tr>
<tr>
<td class="heading">Reyansh</td>
<td class="heading">85</td>
<td class="heading">90</td>
<td class="heading">16</td>
</tr>
<tr>
<td class="heading">Ayanshi</td>
<td class="heading">78</td>
<td class="heading">95</td>
<td class="heading">17</td>
</tr>
<tr>
<td class="heading">Sanya</td>
<td class="heading">18</td>
</tr>
</table>
</body>
</html>
OUTPUT
Q4 Design Following Frame:
CODE:
<html>
<head>
</head>
<frameset cols="50%,50%">
<frame src="a.html">
<frameset rows="80%,20%">
<frame src="b.html">
<frame src="c.html">
</frameset>
</frameset>
</html>
A.HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
</html>
B.HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h1>EXPLANATION</h1><br>
- - - - - - - - - - - - - - - - - - - - - - - <br>
- - - - - - - - - - - - - - - - - - - - - - - <br>
<br><br><br><br><br><br.<br>
<br><br><br><br><br><br><br>
<H2>VIEW EXAMPLE</H2>
</body>
</html>
C.HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h1>EXAMPLE</h1>
</body>
</html>
OUTPUT:
Q5. Make an image map showing the usage of shape, cords, href attributes
in map. Link each hotspot to their respective details. All the web pages
should be designed with proper background color, images, font styles
and headings
CODE
<html>
<body>
<h1>IMAGE MAP</h1>
<map name="workplace">
</map>
</body>
</html>
COMPUTER.HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h1>COMPUTER</h1>
<p>A computer is a machine that can be programmed to perform a set of arithmetic or logical operations
automatically.
They are used in almost every field, from medicine and space exploration to business and
communication.<br>
Computers have made our lives easier in many ways. They help us perform tasks that would otherwise be
difficult or impossible.
For example, computers can help us keep track of large amounts of information, communicate with others
around the world, and entertain us with games and videos
</p>
</body>
</html>
CUP.HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h2>CUP</h2>
<p>
A cup is an open-top container used to hold liquids for pouring or drinking typically with a flattened
hemispherical shape,
A measuring cup generally measures liquids such as milk, water, oil, etc., and powdered substances such as
sugar, flour, baking soda, etc.
</p>
</body>
</html>
MOBILE.HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<h1>Mobile</h1>
<p>
A mobile phone makes our lives easier. It can be used for work/business purposes, attending online classes,
entertainment, or just talking with friends and family members.
They also have a high-speed internet connection that helps us get what we need quickly and easily.
</p>
</body>
</html>
Output
Q6. Design Student Registration Form for admission in college.
CODE
<html>
<body>
<fieldset>
<label for="gender">Gender:</label><br>
<label for="address">Address:</label><br>
<option value="BSc">BSc</option>
<option value="BA">BA</option>
<option value="BCom">BCom</option>
<option value="BBA">BBA</option>
<option value="BCA">BCA</option>
</select><br><br>
<label for="terms">
<input type="checkbox" id="terms" name="terms" required> I agree to the terms and conditions.
</label><br>
</form>
</fieldset>
</body>
</html>
OUTPUT
Q7 Create a webpage and show the usage of inline, internal and external
Stylesheets
CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
h1 {
text-align: center;
.internal-style {
color: green;
font-style: italic;
</style>
</head>
<body>
</html>
#STYLE.CSS
body {
background-color: #f0f0f0;
h1 {
color: navy;
p{
font-size: 20px;
color: #d00c0c;
OUTPUT
Q8. Create a webpage containing a background image and apply all the
background styling attributes.
CODE
<html>
<head>
<style>
body {
background-image: url(VIPS-TC_Campus.jpg);
background-color: #f0f0f0;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
background-size: cover;
background-blend-mode: multiply;
color: white;
margin: 0;
padding: 0;
height: 100vh;
.content {
text-align: center;
padding-top: 20%;
.heading {
font-size: 3em;
margin-bottom: 10px;
.line{
font-size: 1.2em;
</style>
</head>
<body>
<div class="content">
</div>
</body>
</html>
OUTPUT
Q9.Create a awebpage showing the usage of font styling attributes.
CODE
<html>
<head>
<style>
.body{
line-height: 1.6;
margin: 20px;
background-color: #f9f9f9;
.heading {
font-size: 2.5em;
font-weight: bold;
font-style: italic;
text-align: center;
color: #333;
text-transform: uppercase;
letter-spacing: 2px;
.head{
font-size: 2em;
font-weight: normal;
color: #555;
text-align: left;
.paragraph {
font-size: 1.2em;
font-style: normal;
font-weight: 300;
text-align: justify;
color: #666;
line-height: 1.8;
.highlight {
font-weight: bold;
font-style: italic;
text-decoration: underline;
color: #d9534f;
</style>
</head>
<body class="body">
<p class="paragraph"> You can also use <strong>bold</strong>, <em>italic</em>, and <u>underline</u>
within text.</p><br>
<p class="paragraph">The text here is aligned <strong>justified</strong> and has a comfortable line-
height.</p><br>
</body>
</html>
OUTPUT
Q10.Create a web page and apply all the text styling attributes use id and
class selector
CODE
<html>
<head>
<style>
#main-title {
font-size: 36px;
text-align: center;
color: #333;
text-transform: capitalize;
letter-spacing: 2px;
.text-paragraph {
font-size: 16px;
line-height: 1.5;
margin-bottom: 20px;
.bold-text {
font-weight: bold;
.italic-text {
font-style: italic;
.underline-text {
text-decoration: underline;
.text-color {
color: #3498db;
}
.uppercase {
text-transform: uppercase;
.lowercase {
text-transform: lowercase;
.letter-spacing {
letter-spacing: 3px;
.text-center {
text-align: center;
.text-right {
text-align: right;
.heading {
font-size: 24px;
color: #2c3e50;
text-transform: uppercase;
margin-bottom: 10px;
</style>
</head>
<body>
<p class="text-paragraph">
</p>
<p class="text-paragraph">
</p>
<p class="text-center">
Centered
</p>
<p class="text-right">
Right-aligned
</p>
</body>
</html>
OUTPUT
Q11Create a webpage and implement all list styling attributes
CODE
<html>
<head>
<style>
body {
margin: 20px;
line-height: 1.6;
h1 {
text-align: center;
font-size: 36px;
color: #2c3e50;
h2 {
font-size: 24px;
color: #34495e;
margin-top: 30px;
text-transform: uppercase;
.list-disc {
list-style-type: disc;
.list-circle {
list-style-type: circle;
margin-left: 20px;
.list-square {
list-style-type: square;
}
.list-decimal {
list-style-type: decimal;
.list-lower-alpha {
list-style-type: lower-alpha;
.list-upper-roman {
list-style-type: upper-roman;
.list-lower-greek {
list-style-type: lower-greek;
.list-outside {
list-style-position: outside;
margin-left: 20px;
.list-inside {
list-style-position: inside;
margin-left: 20px;
</style>
</head>
<body>
<section>
<h2>VEHICLES</h2>
<ul class="list-disc">
<li>Car</li>
<li>Bus</li>
</ul>
<ul class="list-circle">
<li>Bike</li>
<li>Truck</li>
</ul>
<ul class="list-square">
<li>Scooter</li>
<li>Aeroplane</li>
</ul>
</section>
<section>
<h2>Animals</h2>
<ol class="list-decimal">
<li>Cat</li>
<li>Dog</li>
</ol>
<ol class="list-lower-alpha">
<li> Cow</li>
<li>Buffalo</li>
</ol>
<ol class="list-upper-roman">
<li>Lion</li>
<li>Tiger</li>
</ol>
<ol class="list-lower-greek">
<li>Fox</li>
<li>Cheetah</li>
</ol>
</section>
<section>
<h2>Nested Lists</h2>
<ul class="list-outside">
<li>Fruits
<ul>
<li>Mango</li>
<li>Kiwi</li>
<li>Papaya</li>
</ul>
</li>
</ul>
<ul class="list-inside">
<li>Vegetable
<ul>
<i>Potato</i>
<i>Tomato</i>
<i>Onion</i>
</ul>
</li>
</ul>
</section>
</body>
</html>
OUTPUT
Q12.Create a web page with three equal columns
CODE
<html>
<head>
<title>Bootstrap </title>
<meta charset="utf-8">
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
COLUMN 2
</div>
</div>
</div>
</body>
</html>
OUTPUT
Q13.Create a webpage containing bootstrap table
CODE
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap tables</title>
<meta charset="utf-8">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Bootstrap Table</h2>
<thead class="thead-dark">
<tr>
<th>Name</th>
<th>Phone no.</th>
<th>Age</th>
<th>Occupation</th>
</tr>
</thead>
<tbody>
<tr>
<td>Reyansh</td>
<td>7876699572</td>
<td>28</td>
<td>Software Engineer</td>
</tr>
<tr>
<td>Anaya</td>
<td>8168389045</td>
<td>34</td>
<td>Data Scientist</td>
</tr>
<tr>
<td>Risabh</td>
<td>9997802255</td>
<td>45</td>
<td>Project Manager</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
OUPUT
Q14.Create a webpage containing various types of tables.
CODE
<html>
<head>
<title>Bootstrap Example</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Images Types</h2>
</div>
</body>
</html>
OUTPUT
Q15.Create a webpage containing various types of buttons
CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bootstrap Buttons</title>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<h2>Bootstrap Buttons</h2>
<h4>Button Styles</h4>
</div>
</body>
</html>
OUTPUT
Q16 Create a webpage containing various Bootstrap typography classes.
CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<h4>Headings</h4>
</p>
<h4 class="mt-4">Blockquote</h4>
<blockquote class="blockquote">
</blockquote>
<p class="text-justify">Justified text. This text takes up the full width of the container .</p>
<p class="text-nowrap">No wrap text. This text won't wrap even if it's very long and overflows its
container.</p>
<h4 class="mt-4">Text Transformation</h4>
</div>
</body>
</html>
OUTPUT
Q17.Create a web page containing to display the heading using Jumbotron.
CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bootstrap </title>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<div class="jumbotron">
<h1>Bootstrap</h1>
the web.</p>
</div>
<div class="container">
<p> A jumbotron indicates a big box for for calling extra attention to some special content or
information.</p>
</div>
</body>
</html>
OUTPUT
Q18.Write a program to show the usage of inbuilt functions and dialog
boxes.
CODE
<html>
<head>
<style>
body {
text-align: center;
margin-top: 50px;
button {
font-size: 16px;
margin: 10px;
</style>
</head>
<body>
<p id="output"></p>
<script>
function showAlert() {
alert("This is an alert dialog box!");
function showConfirm() {
if (userResponse) {
} else {
function showPrompt() {
if (userName != null) {
} else {
function useInbuiltFunctions() {
document.getElementById('output').innerHTML =
}
</script>
</body>
</html>
OUTPUT
Q19.Write a program to show the usage of alert box and confirm box\
CODE
<html>
<head>
<style>
body {
text-align: center;
margin-top: 50px;
button {
font-size: 16px;
margin: 10px;
p{
font-size: 18px;
</style>
</head>
<body>
<p id="output"></p>
<script>
function showAlert() {
function showConfirm() {
if (userResponse) {
} else {
</script>
</body>
</html>
OUTPUT
Q20.Create a questionnaire related to any topic of your choice by using
Form Elements.
CODE
<!DOCTYPE html>
<html lang="en">
<head>
<title> Form</title>
</head>
<body>
<h2> Form</h2>
<label for="email">Email:</label><br>
<label for="age">Age:</label><br>
<label for="gender">Gender:</label><br>
<label for="male">Male</label><br>
<label for="female">Female</label><br>
<label for="other">Other</label><br><br>
<option value="satisfaction">0-300</option>
<option value="satisfaction">300-600</option>
<option value="satisfaction">600-900</option>
<option value="satisfaction">900-above</option>
</select><br><br>
<label for="JAVA">JAVA</label><br>
<label for="C++">C++</label><br>
<label for="HTML">HTML</label><br><br>
<label for="comments">FEEDBACK</label><br>
</form>
</body>
</html>
OUTPUT
Q21. Design a website and apply all the features of HTML,CSS,Javascript
and bootstrap to make the website attractive.
CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<header>
<div class="logo">
</div>
<nav>
<a href="shop.html">Shop</a>
</nav>
</header>
<div class="section">
<div class="hero"></div>
<div class="content">
<div class="image">
</div>
<div class="text">
<h1>Jewellery Shop</h1>
</div>
</div>
</div>
<section class="most-loved">
<div class="product-gallery">
<div class="product">
<p> Necklace</p>
</div>
<div class="product">
<p>Earings</p>
</div>
<div class="product">
<p>Rings</p>
</div>
<div class="product">
<p>Bracelet</p>
</div>
</div>
<div class="story">
<section class="our-story">
<div class="story-text">
<h2>Our Story</h2>
<p>We curate a collection of exquisite pieces, from timeless classics to modern trends.</p>
<button>Read More</button>
</div>
<div class="story-image">
</section>
</div>
<footer class="footer">
</footer>
</body>
</html>
#styles.css
*{
margin: 0;
padding: 0;
box-sizing: border-box;
body {
background-color: #a0956b;
color: #2c2c2c;
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #a0956b;
.logo img {
height: 180px;
width: auto;
nav a {
color: #f1eede;
text-decoration: none;
margin-left: 20px;
font-size: 1.2em;
nav a.active {
nav a:hover {
color: #ddd;
.section {
background-image: url(background.jpeg);
height: 400px;
width: 1550px; ;
.content {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
}
.image img {
border-radius: 50%;
height: 270px;
width: 270px;
object-fit: cover;
.text h1 {
font-size: 4em;
font-weight: bold;
color: #2c2c2c;
.text p {
font-size: 1.8em;
margin: 20px 0;
color: #555;
.button {
display: inline-block;
background-color: #a0956b;
color: #f1eede;
font-weight: bold;
text-decoration: none;
border-radius: 9px;
border-color: #555;
border-width: 4px;
}
.button:hover {
background-color: #8a7a5f;
*{
margin: 0;
padding: 0;
box-sizing: border-box;
.most-loved {
text-align: center;
background-color: #a0956b ;
padding: 40px;
border-radius: 8px;
max-width: 800px;
margin: auto;
.most-loved h2 {
font-size: 2em;
color: #fff;
margin-bottom: 20px;
.product-gallery {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 20px;
}
.product {
width: 150px;
text-align: center;
.product img {
width: 100%;
height: 200px;
border-radius: 10px;
.product p {
margin-top:20px;
font-size: 2em;
color: #fff;
*{
margin: 0;
padding: 0;
box-sizing: border-box;
.story {
.our-story {
display: flex;
background-color: #f0e8d8 ;
padding: 50px;
border-radius: 8px;
max-width: 800px;
.story-text {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
padding-right: 20px;
.story-text h2 {
font-size: 2em;
color: #787450;
margin-bottom: 10px;
.story-text p {
font-size: 1.1em;
color: #555;
margin-bottom: 20px;
.story-text button {
background-color: #a2a382;
color: white;
border: none;
border-radius: 5px;
font-size: 1em;
cursor: pointer;
}
.story-text button:hover {
background-color: #909a72;
.story-image {
flex: 1;
display: flex;
align-items: normal;
.story-image img {
width: 100%;
height: auto;
border-radius: 8px;
body {
margin: 0;
.footer {
background-color:#a0956b;
color: white;
text-align: center;
padding: 20px;
font-size: 16px;
.footer p {
margin: 0;
font-weight: bold;
.social-icons {
margin-top: 10px;
.icon {
color: white;
font-size: 20px;
margin: 0 10px;
text-decoration: none;
.icon:hover {
color: #ddd;
.our-collection h2 {
font-size: 2em;
color: #fff;
margin-bottom: 20px;
.our-collection {
text-align: center;
background-color: #a0956b ;
padding: 40px;
border-radius: 8px;
max-width: 800px;
margin: auto;
.item img {
width: 120%;
height: 240px;
border-radius: 10px;
.item-gallery {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 50px;
.item {
width: 150px;
text-align: center;
.item p {
margin-top:20px;
font-size: 2em;
color: #fff;
*{
box-sizing: border-box;
margin: 0;
padding: 0;
.container {
display: flex;
max-width: 1600px;
.image-section img {
width: 150%;
height: 600px;
.form-section {
background-color: #e8dfc8;
padding: 40px;
flex: 1;
.form-section h1 {
font-size: 2rem;
color: #9d9468;
margin-bottom: 20px;
.input-group {
display: flex;
gap: 10px;
margin-bottom: 15px;
input, textarea {
width: 100%;
padding: 10px;
border-radius: 5px;
font-size: 1rem;
textarea {
height: 100px;
resize: none;
button {
background-color: #9d9468;
color: white;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
button:hover {
background-color: #8a7f5a;
Shop.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<header>
<div class="logo">
</div>
<nav>
</nav>
</header>
<section class="our-collection">
<h2>Our Collection</h2>
<div class="item-gallery">
<div class="item">
<img src="necklace.jpeg" alt="NECKLACE">
<p> Necklace</p>
</div>
<div class="item">
<p>Earings</p>
</div>
<div class="item">
<p>Rings</p>
</div>
<div class="item">
<p>Bracelet</p>
</div>
<div class="item">
<p>Nose Rings</p>
</div>
<div class="item">
<p>Toe Rings</p>
</div>
<footer class="footer">
</footer>
</div>
</section>
</body>
</html>
Contact.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<header>
<div class="logo">
</div>
<nav>
</nav>
</header>
<div class="container">
<div class="image-section">
</div>
<div class="form-section">
<h1>Let's Chat</h1>
<div class="input-group">
</div>
<div class="input-group">
</div>
</form>
</div>
</div>
<footer class="footer">
</footer>
</body>
</html>
OUTPUT: