0% found this document useful (0 votes)
19 views17 pages

E Commerce

This document is a practical file for a BBA course on E-commerce, submitted to Guru Gobind Singh Indraprastha University. It includes various HTML coding exercises such as creating simple web pages, using hyperlinks, designing tables, and implementing lists. The file showcases the student's work under the guidance of a faculty member, with each section detailing the aim, coding, and output of different HTML projects.

Uploaded by

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

E Commerce

This document is a practical file for a BBA course on E-commerce, submitted to Guru Gobind Singh Indraprastha University. It includes various HTML coding exercises such as creating simple web pages, using hyperlinks, designing tables, and implementing lists. The file showcases the student's work under the guidance of a faculty member, with each section detailing the aim, coding, and output of different HTML projects.

Uploaded by

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

LIVE PROJECT EXPERIMENTAL LEARNING OF

BBA-114
E commerce pratical file
Submitted in partial fulfilment of the requirements for the
award of the degree of
BACHELOR OF BUSINESS ADMINISTRATION To
GURU GOBIND SINGH INDRAPRASTHA UNIVERSITY, DELHI
SESSION-2024-2028

::
UNDER THE GUIDANCE SUBMITTED BY :MAHI GELERA

OF MS.DEEPAK 36121301724
INDEX

S.NO PRATICAL NAME SIGN


1. Print “Hello" in the browser
2. Simple text HTML
3. Webpage using hyperlinks
4. Change background colour
5. Insert an image
6. Table implementation
7. Rows spanning in table
8. Col span in table
9. Index page of practical file
10. Company brochure
11. Restaurant menu with ordered list
12. Unordered list
13. . Frameset for college website
14. College homepage

1.

AIM: WRITE HTML CODE TO PRINT HELLO IN THE BROWSER

CODING:

<html>

<head>

<title>Hello</title>

</head>

<body>

<h1>Hello</h1>

</body>

</html>
OUTPUT:

AIM-WRITE THE HTML CODE USING SIMPLE TEXT

CODING:

<html>

<head>

<title>Simple Text</title>

</head>

<body>

<p>This is a simple HTML paragraph.</p>

</body>

</html>

OUTPUT:
3.

AIM:DESIGN A WEB PAGE USING HYPERLINK

CODING:

<html>

<head>

<title>Hyperlink Example</title>

</head>

<body>

<a href="https://www.google.com">Go to Google</a>

</body>

</html>
OUTPUT:

4.

AIM:DESIGN A WEB PAGE TO CHANGE THE BACKGROUND COLOUR OF THE HTML WEB PAGE

CODING:

<html>

<head>

<title>Background Colour</title>

</head>

<body style="background-colour: light blue;">

<p>This page has a light blue background.</p>

</body>

</html>
OUTPUT:

5.

AIM:DESIGN A WEB PAGE TO INSERT A IMAGE IN HTML FILE

CODING:

<!DOCTYPE html>

<html>

<head>

<title>Image Example</title>

</head>

<body>

<img src="image.jpg" alt="Sample Image" width="300">

</body>
</html>

OUTPUT:

6.

AIM:DESIGN A WEB PAGE IMPLEMENT THE TABLE

CODING:

<html>

<head>

<title>Table Example</title>

</head>

<body>

<table border="1">

<tr><th>Name</th><th>Age</th></tr>

<tr><td>Alice</td><td>21</td></tr>
<tr><td>Bob</td><td>22</td></tr>

</table>

</body>

</html>

OUTPUT:

AIM: Design a web page using "rowspan" in a table

CODING:

<html>

<head>

<title>Rowspan Table</title>

</head>

<body>

<table border="1">

<tr><th rowspan="2">Name</th><th>Subject</th></tr>
<tr><td>Math</td></tr>

</table>

</body>

</html>

OUTPUT:

8.

AIM: Design a web page using "colspan" in a table

CODING:

<html>

<head>

<title>Colspan Table</title>

</head>

<body>

<table border="1">

<tr><th colspan="2">Student Info</th></tr>

<tr><td>Name</td><td>John</td></tr>
</table>

</body>

</html

OUTPUT:

9.

AIM: Write HTML code to design the index page of the practical file

CODING:

<html>

<head>

<title>Index Page</title>

</head>

<body>

<h2>Practical File Index</h2>

<ul>

<li><a href="task1.html">Task 1 - Hello</a></li>


<li><a href="task2.html">Task 2 - Simple Text</a></li>

</ul>

</body>

</html>

OUTPUT:
10.

AIM: Write HTML code to design a company pamphlet/brochure of your company

CODING:

html>

<head>

<title>Company Brochure</title>

</head>

<body>

<h1>MAHI Pvt. Ltd.</h1>

<p>We provide IT solutions and services.</p>

</body>

</html>

OUTPUT:
11.

AIM: Design a web page to create a menu of the restaurant with ordered list

CODING:

<html>

<head>

<title>Menu</title>

</head>

<body>

<h2>Menu</h2>

<ol>

<li>Pizza</li>

<li>Burger</li>

<li>Pasta</li>

</ol>

</body>

</html>

OUTPUT:
12.

AIM: Design a web page to create a menu of the restaurant with unordered list

CODING:

<html>

<head>

<title>Unordered List</title>

</head>

<body>

<h2>Grocery List</h2>

<ul>

<li>Milk</li>

<li>Bread</li>

<li>Eggs</li>

</ul>

</body>

</html>

OUTPUT:
13.

AIM: Design a web page to show a multiple college website using frameset

CODING:

<html>

<head>

<title>Multiple College Websites</title>

</head>

<frameset cols="33%,34%,33%">

<frame src="https://www.du.ac.in" name="du">

<frame src="https://www.jnu.ac.in" name="jnu">

</frameset>

</html>

OUTPUT:
14.

AIM: Write HTML code to design the college home page

CODING:

<html>

<head>

<title>College Home Page</title>

</head>

<body>

<h1>TECNIA INSTITUE OF ADVANCED STUDIES</h1>

<p>Welcome to our official website!</p>

</body>

</html>

OUTPUT:

You might also like