0% found this document useful (0 votes)
17 views14 pages

Pulkit Jain e Commerce File

Uploaded by

pulkitjain254
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views14 pages

Pulkit Jain e Commerce File

Uploaded by

pulkitjain254
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 14

PRACTICAL FILE

ON
E-COMMERCExc LAB
BBA 2th SEM
COURSE CODE: BBA-108
SESSION 2023-26

SUBMITTED TO: SUBMITTED BY:


NAME: PULKIT JAIN
MS. RITU SAWANNI ROLLNO: 36115101723
CLASS: SECTION B
ASSISTANT [PROFESSOR, IT]
INDEX

S.N Page Sign.


o. List of Programs no.

1 Write a program in HTML using a heading and title. 1

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.

5 Write a program in HTML using an Image tag. 7

6 Write a program in HTML using an Unordered list. 8

7 Write a program in HTML using an ordered list. 9

8 Write a program in HTML using a table tag with a caption. 10-11

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.

1.Write a program in HTML using a heading and title.


<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>MERI COLLEGE</TITLE>
</head>
<body>
<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>

2.Write a program in HTML using background color and text color.

<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>

5. Write a program in HTML using an Image tag.

<!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>

6.Write a program in HTML using an unordered list.


<!DOCTYPE html>
<html>
<head>
<title> MERI COLLEGE </title>
</head>
<body>
<h1> About MERI college </h1>
<h2> An unordered list </h2>
<ul>
<li> lemon juice </li>
<li> coffee </li>
<li> tea </li>
</ul>
</body>
</html>

7.Write a program in HTML using an ordered list.

<!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>

8.Write a program in HTML using a table tag with the caption.


<DOCTYPE html>
<html>
<head>
<title> MERI COLLEGE </title>
<style>
TABLE, TH, TD {BORDER: 1PX SOLID BLACK;}
</style>
</head>
<body>
<body bgcolor = "blue">
<h1> ABOUT SALARY </h1>
<table>
<caption> monthly saving </caption>
<tr>
<th> MONTH </th>
<th> MONTHLY SAVING </th>
</tr>
<tr>
<td> January </td>
<td> 50000 </td>
</tr>
<tr>
<td> February </td>
<td> 60000 </td>
</tr>
</table> </body>
</html>

You might also like