E Commerce
E Commerce
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
1.
CODING:
<html>
<head>
<title>Hello</title>
</head>
<body>
<h1>Hello</h1>
</body>
</html>
OUTPUT:
CODING:
<html>
<head>
<title>Simple Text</title>
</head>
<body>
</body>
</html>
OUTPUT:
3.
CODING:
<html>
<head>
<title>Hyperlink Example</title>
</head>
<body>
</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>
</html>
OUTPUT:
5.
CODING:
<!DOCTYPE html>
<html>
<head>
<title>Image Example</title>
</head>
<body>
</body>
</html>
OUTPUT:
6.
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:
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.
CODING:
<html>
<head>
<title>Colspan Table</title>
</head>
<body>
<table border="1">
<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>
<ul>
</ul>
</body>
</html>
OUTPUT:
10.
CODING:
html>
<head>
<title>Company Brochure</title>
</head>
<body>
</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>
</head>
<frameset cols="33%,34%,33%">
</frameset>
</html>
OUTPUT:
14.
CODING:
<html>
<head>
</head>
<body>
</body>
</html>
OUTPUT: