Aadi
Aadi
of
E-Commerce Lab (BBA-114)
Submitted in partial fulfilment for the award of BBA degree of GGSIPU, New Delhi
Submitted by
Name: Aadi Jain
Roll No:06515601724
Semester: 2nd
Batch: 2024-28
DEPARTMENT OF MANAGEMENT
<body>
</body>
</html>
Q3 Design a web page by using html to implement the ordered list and
unordered list
<html>
<body>
<h2>Ordered List</h2>
<ol>
<li>Laptops </li>
<li>Hardisk</li>
<li>Pendrive</li>
</ol>
<h2>Unordered List</h2>
<ul>
<li>Keyboard </li>
<li>Table </li>
<li>Calculator</li>
</ul>
</body>
</html>
Q4 Design a web page by using html to implement the table that contains
record for 10
<html>
<body>
<h2>Student Records</h2>
<table border="1">
<tr><th>Roll No</th><th>Name</th><th>Marks</th></tr>
<tr><td>1</td><td>Vidhi</td><td>85</td></tr>
<tr><td>2</td><td>Sagar </td><td>90</td></tr>
<tr><td>3</td><td>Mayank</td><td>80</td></tr>
<tr><td>4</td><td>Ansh</td><td>95</td></tr>
<tr><td>5</td><td>piyush</td><td>93</td></tr>
<tr><td>6</td><td>s=Kar k</td><td>75</td></tr>
<tr><td>7</td><td>anil</td><td>67</td></tr>
<tr><td>8</td><td>vinod</td><td>78</td></tr>
<tr><td>9</td><td>Neha</td><td>60</td></tr>
<tr><td>10</td><td>rohit</td><td>70</td></tr>
</table>
</body>
</html>
Q5Design a web document by using html to implement the different colours as
background colour and text colours
<html>
</body>
</html>
Q6 Design a web page by using html to implement inser on of image in web
page and perform different forma ng on it
<html>
<head>< tle>Image Example</ tle></head>
<body>
<h2>Our College Building</h2>
<img src="adgitm.jpg" alt="College Image" width="400" style="border: 2px
solid black;">
</body>
</html>
Q7Design a web document by using html to implement the use of different
types of icons
<html>
<head>< tle>Icons</ tle></head>
<body>
<h2>Social Media Icons</h2>
<img src="facebook-icon.png" alt="Facebook" width="40">
<img src="twi er-icon.png" alt="Twi er" width="40">
</body>
</html>
Q8 Design a web document by using html to implement hyperlinks and its naviga on to different
web pages
<html>
<body>
</body>
</html>
Q9 Design a web document by u*sing html to implement working with frames
html
CopyEdit
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body, html {
margin: 0;
height: 100%;
header {
background-color: #4CAF50;
color: white;
padding: 15px;
text-align: center;
font-size: 24px;
.container {
display: flex;
nav {
width: 200px;
background-color: #f0f0f0;
padding: 15px;
box-sizing: border-box;
nav a {
display: block;
margin: 10px 0;
color: #333;
nav a:hover {
color: #4CAF50;
iframe {
flex-grow: 1;
border: none;
</style>
</head>
<body>
<header>
</header>
<div class="container">
<nav>
</nav>
</div>
</body>
</html>
html
CopyEdit
<!DOCTYPE html>
<html>
<body>
<h2>Home Page</h2>
</body>
</html>
html
CopyEdit
<!DOCTYPE html>
<html>
<body>
<h2>About Us</h2>
</html>
html
CopyEdit
<!DOCTYPE html>
<html>
<body>
<h2>Contact Us</h2>
</body>
</html>
Q10 Design a web document by using html to implement forms and controls
<html>
<body>
<form>
Course:
<select name="course">
</select><br>
</form>
</body>
</html>
Q11 Prepare a resume in html with objec ves, educa on, hobbies and extracurricular ac vi es
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
margin: 0;
padding: 40px;
background-color: #f5f7fa;
color: #333;
.container {
max-width: 900px;
margin: auto;
background: white;
padding: 40px;
h1, h2 {
color: #007BFF;
ul {
list-style-type: square;
margin-le : 20px;
sec on {
.header {
display: flex;
align-items: center;
.header-text {
flex: 1;
.header h1 {
margin: 0;
font-size: 36px;
.header p {
font-size: 18px;
color: #666;
.profile-img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
.print-bu on {
right: 20px;
background: #007BFF;
color: white;
border: none;
cursor: pointer;
border-radius: 6px;
font-size: 14px;
.print-bu on:hover {
background-color: #0056b3;
@media print {
.print-bu on {
display: none;
</style>
</head>
<body>
<div class="container">
<div class="header">
<div class="header-text">
<h1>Aadi Jain</h1>
<p>Email: [email protected]<br>
Phone: +91-9773710365<br>
</div>
<sec on>
<h2>Objec ve</h2>
<p>
To leverage my enthusiasm, dedica on, and communica on skills to grow personally and
professionally
</p>
</sec on>
<sec on>
<h2>Educa on</h2>
<ul>
<li><strong>Dr. Akhilesh Das Gupta Ins tute of Professional Studies</strong> – BBA, Pursuing,
2024–2027</li>
</ul>
</sec on>
<sec on>
<h2>Hobbies</h2>
<ul>
</ul>
</sec on>
<sec on>
<h2>Extracurricular Ac vi es</h2>
<ul>
</ul>
</sec on>
</div>
</body>
</html>
Q12 Design a web document to implement the use of mul media components in web page
<html>
<body>
<h2>Video Example</h2>
</video>
<h2>Audio Example</h2>
<audio controls>
</audio>
</body>
</html>