0% found this document useful (0 votes)
193 views28 pages

E Commerce Practical File

The document contains 15 tasks to create webpages using various HTML tags like headings, paragraphs, lists, tables, frames, forms, multimedia elements. It asks to explain various tags and attributes and link webpages internally. The objective is to learn basic HTML tags and attributes through practical exercises.

Uploaded by

sanchit uppal
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)
193 views28 pages

E Commerce Practical File

The document contains 15 tasks to create webpages using various HTML tags like headings, paragraphs, lists, tables, frames, forms, multimedia elements. It asks to explain various tags and attributes and link webpages internally. The objective is to learn basic HTML tags and attributes through practical exercises.

Uploaded by

sanchit uppal
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/ 28

E-COMMERCE PRACTICAL FILE

(BBA-108)
SUBMITTED IN PARTIAL FULFILLMENT FOR THE AWARD OF
THE DEGREE OF BACHELORS OF BUSINESS ADMINISTRATION

AFFILIATED TO

GURU GOBIND SINGH INDRAPRASTHA UNIVERSITY, DELHI

Submitted To: Submitted By:


Dr. Deepika Joshi Sanchit Uppal(BBA E2C)

Asst. Professor 35780001721

GITARATTAN INTERNATIONAL BUSINESS SCHOOL Madhuban


Chowk, Outer ring road, Block-D Sector-14, Rohini, Delhi 110085
1. Create a webpage in HTML which has Your College Name as heading and
add the text regarding it & make the use of Quotation and Citation Elements
& save the file with your name.
INPUT

2. Create a webpage in HTML to show all the types of heading tags and use
Comment Tag to describe them.
HEADING TAGS: HTML defines six levels of headings. A heading element
implies all the font changes, paragraph breaks before and after, and any white
space necessary to render the heading. The heading elements are H1, H2, H3,
H4, H5, and H6 with H1 being the highest (or most important) level and H6 the
least.
COMMENT TAG: The comment tag is used to insert comments in the source
code. Comments are not displayed in the browsers. You can use comments to
explain your code, which can help you when you edit the source code at a later
date. This is especially useful if you have a lot of code.
INPUT

OUTPUT

3. Create a static web page which defines all text formatting tags of
HTML and briefly explain all the tags.
TEXT FORMATTING TAGS: HTML Formatting is a process that allows
us to format text to increase its visual appeal. Various HTML tags can
change how text appears on a web page and make the text
attractive. We can use HTML text formatting tags to bold, italicize,
underlined text, and do more.

INPUT

OUTPUT
4. Create your resume using HTML tags and include superscript, subscript
tags and mono spaced Font in it.
SUPERSCRIPT <sup>
The <sup> tag defines superscript text. Superscript text appears half a
character above the normal line, and is sometimes rendered in a smaller font.
Superscript text can be used for footnotes, like WWW.
SUBSCRIPT <sub>
The <sub> tag defines subscript text. Subscript text appears half a character
below the normal line, and is sometimes rendered in a smaller font. Subscript
text can be used for chemical formulas, like H2O.
MONOSPACED <tt>
The <tt> HTML element creates inline text which is presented using the
user agent's default monospace font face. This element was created
for the purpose of rendering text as it would be displayed on a fixed-
width display such as a teletype, text-only screen, or line printer.

INPUT

OUTPUT
5. Create a static webpage using table tags of HTML and explain all the
attributes define under Table Tag.
TABLE TAGS:
Definition and Usage. The <table> tag defines an HTML table. An HTML table
consists of one <table> element and one or more <tr>, <th>, and <td>
elements. The <tr> element defines a table row, the <th> element defines a
table header, and the <td> element defines a table cell.
STATIC WEBPAGE:
A static website uses server-side rendering to serve pre-built HTML, CSS, and
JavaScript files to a web browser, in contrast to traditional dynamic sites that
work by rendering the webpage at the time of the request.

INPUT

OUTPUT
6. Create three HTML files named 1.html, 2.html and 3.html and link them
together to each other and put the appropriate content in each file.
<a> TAG
The href attribute specifies the URL of the page the link goes to. If the href
attribute is not present, the <a> tag will not be a hyperlink.\
FILE 1

OUTPUT

FILE 2
OUTPUT

FILE 3
OUTPUT

7. Create a webpage which defines different empty tags.


INPUT
8. Create webpage to include multimedia tags and explain each tag with its
syntax.
INPUT
OUTPUT
9. Create employee registration webpage using HTML form objects.
INPUT
OUTPUT

10. Create a table using Html


Tags.
INPUT
OUTPUT

11. Create a web page using frame tag a) rows and columns b) border
and border colour.

ROWS ATTRIBUTE:
The rows attribute of <frameset> tag defines horizontal frames and cols
attribute defines vertical frames. Each frame is indicated by <frame> tag and it
defines which HTML document shall open into the frame.
COLUMNS ATTRIBUTE:
cols: The cols attribute is used to create vertical frames in a web browser.
This attribute is basically used to define the no. of columns and their size
inside the frameset tag.

<FRAMESET BORDERCOLOUR ="">:

Was used to specify the colour of borders between frames in a frameset.

FRAME BORDER:
The HTML <frame> frameborder attribute is used to specify whether or not a
border should be displayed between the frames. For this, we use two values
0 and 1, where 0 defines no border and 1 defines the border.

INPUT

OUTPUT
12.Explain all types of listing available in Html with its syntax.
Create a webpage using list tags of HTML.
What are the listing tags?
HTML Lists are used to specify lists of information. All lists
may contain one or more list elements.
1. <li> tag:

The <li> tag defines a list item. The <li> tag is used inside
ordered lists(<ol>), unordered lists (<ul>), and in menu lists
(<menu>). In <ul> and <menu>, the list items will usually be
displayed with bullet points.
2. <ol> tag:

The <ol> tag defines an ordered list. An ordered list can be


numerical or alphabetical. The <li> tag is used to define each
list item.
3. <ul> tag:

The <ul> tag defines an unordered (bulleted) list. Use the


<ul> tag together with the <li> tag to create unordered lists.
4. <dt> tag:

The <dt> tag defines a term/name in a description list. The


<dt> tag is used in conjunction with <dl> (defines a
description list) and <dd> (describes each term/name).
INPUT

OUTPUT
13. Write html code to show nested list and attributes like reversed, start
and type.
INPUT

OUTPUT
14. Create a html page to show various body tag attributes like
background color, text color and add scrolling text “read the message”.
Also add an image as a link.
INPUT

OUTPUT
15. Create a HTML webpage for you college with three frames. The first
frame will be horizontal on displaying the name and address of the
College. The second frame which is vertical on left will list the available
Courses. The third frame will be to the right of the second frame and
will display the introduction to the College.

INPUT

OUTPUT

You might also like