PRACTICAL FILE
ON
E COMMERCE LAB
2ND SEM
SESSION = 2023-2026
SUBMITTED TO:
SUBMITTED BY ;
RITU SAWANI SAKSHAT SHARMA
ASSISTANT PROFESSOR , IT BBA 2ND SEMESTER
INDEX
Page
SNO List of Programs no. Sign.
1 Write a program in HTML using a
heading and title.
Write a program in HTML using
background color and text color.
2
Write a program in HTML using
alignment with the heading and
3 paragraph.
Write a program in HTML using bold,
italic, underline, subscript, superscript,
4 small and big.
5 Write a program in HTML using an
Image tag.
Write a program in HTML using an
6
Unordered list.
7 Write a program in HTML using an
ordered list.
8 Write a program in HTML using a table
tag with a caption.
Bachelor of Business Administration List of Practical
BBA-108 E-Commerce Lab
Course Instructor- Ms. Ritu
Sawanni
OBJECTIVE-
The lab would be based on the Paper BBA-106: E-Commerce and will cover the
following:
● Creating Web pages using HTML Tags
● Basic and Advanced text formatting
● Multimedia components in HTML documents
● Designing a webpage: Document Layout, List, Tables, hyperlink, Working
with Forms and Controls, and other relevant things.
LIST OF PRACTICALS
1. Write a program in HTML using a heading and title.
2. Write a program in HTML using background color and text color.
3. Write a program in HTML using alignment with the heading and paragraph.
4. Write a program in HTML using bold, italic, underline, subscript,
superscript, small and big
5. Write a program in HTML using an Image tag.
6. Write a program in HTML using an Unordered list.
7. Write a program in HTML using an ordered list.
8. Write a program in HTML using a table tag with the caption.
[Link] a program in HTML using a heading and title.
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>MERI COLLEGE</TITLE>
</head>
<body>
<h1>about meri college </h1>
</body>
</html>
[Link] a program in HTML using background color and text color.
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>MERI COLLEGE</TITLE>
</head>
<body>
<body style="background-color: pink"><font color ="purple">
<h1>about meri college </h1>
</body>
</html>
[Link] a program in HTML using alignment with the heading and
paragraph
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>MERI COLLEGE</TITLE>
</head>
<body>
<body style="background-color: pink"><font color ="purple">
<h1>about meri college </h1>
<H2>html p aligns content </p>
<p aligns="left">
left align content</p>
<p aligns="center">
center align content</p>
<p aligns="right">
right align content</p>
</body>
</html>
[Link] a program in HTML using bold, italic, underline, subscript,
superscript, small and big.
<!DOCTYPE HTML>
<HTML>
<HEAD>
<title>MERI COLLEGE</title>
</head>
<body>
<body style="background-color: pink"><font color ="blue">
<h1>ABOUT MERI COLLEGE</h1>
<p> This is some normal paragraph text, <strong>and this is some
important text. </strong></p>
<p> This is some normal paragraph text, <em><em> and this is some
emphasized text. </em></p>
<p>This text is normal, and <U> this text is underlined</U></p>
<p>The chemical formula for water is h < sub > 2 </sub > 0. </p>
<p> Water is essential for all forms of life. <sup>1</sup></p>
<p><small> This is some smaller text. </small></p>
<p><big> This is some bigger text. </big></P>
</body>
</html>