Pulkit Jain e Commerce File
Pulkit Jain e Commerce File
ON
E-COMMERCExc LAB
BBA 2th SEM
COURSE CODE: BBA-108
SESSION 2023-26
2
Write a program in HTML using background color and text 2
color.
3
Write a program in HTML using alignment with the 3-5
heading and paragraph.
4
Write a program in HTML using bold, italic, underline, 6
subscript, superscript, small and big.
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.
<DOCTYPE html>
<html >
<head >
<title> MERI COLLEGE </title>
</head>
<body>
<body bgcolor="Blue"><font color="black">
<h1>Ecommerce" or "electronic commerce" is the trading of goods and services on the internet.
It is your bustling city center or brick-and-mortar shop translated into zeroes and ones on the internet
superhighway. </h1>
</body>
</html>
3.Write a program in HTML using alignment with the heading and paragraph.
CENTER
<DOCTYPE html>
<html>
<body>
<h1 align= "center"> MERI COLEEGE </h1>
</body>
</html>
LEFT
<DOCTYPE html>
<html>
<body>
<h1 align= "left"> MERI COLEEGE </h1>
</body>
</html>
RIGHT
<DOCTYPE html>
<html>
<body>
<h1 align= "right"> MERI COLEEGE </h1>
</body>
</html>
4. Write a program in HTML using bold, italic, underline, subscript, small and big.
<!DOCTYPE html>
<html>
<head>
<title> MERI COLLEGE </title>
</head>
<body>
<h1> About MERI college </h1>
<h2> <b> HELLO </b> </h2>
<h3> <u> HELLO WORLD </u> </h3>
<h4> <i> HIEE GUYZZ </i> </h4>
<h5> <small> this is a paragraph </small> </h5>
<h6> <big> congratulations </big> </h6>
<h7> <sub> welcome to my page </sub> </h7>
</body>
</html>
<!DOCTYPE html>
<html >
<head >
<title>MERI COLLEGE </title>
</head>
<body>
<body style="background-color: pink"><font color ="blue">
<h1>ABOUT MERI COLLEGE</h1>
<img src=C:\Users\Karan\OneDrive\Pictures\5419522.jpg width="500 height="600>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title> MERI COLLEGE </title>
</head>
<body>
<h1> About MERI college </h1>
<h2> An ordered list </h2>
<ol type= "1">
<li> lemon juice </li>
<li> coffee </li>
<li> tea </li>
</ol>
</body>
</html>