0% found this document useful (0 votes)
36 views57 pages

Final Practicle

The document is a practical file submitted towards partial fulfillment of a Bachelor of Business Administration degree. It contains assignments on various HTML elements like paragraphs, headings, lists, images, tables and forms. The assignments demonstrate formatting text, inserting images, creating lists and tables. They help learn the basics of HTML coding.

Uploaded by

simranv8595
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)
36 views57 pages

Final Practicle

The document is a practical file submitted towards partial fulfillment of a Bachelor of Business Administration degree. It contains assignments on various HTML elements like paragraphs, headings, lists, images, tables and forms. The assignments demonstrate formatting text, inserting images, creating lists and tables. They help learn the basics of HTML coding.

Uploaded by

simranv8595
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/ 57

PRACTICAL FILE SUBMITTED TOWARDS THE PARTIAL FULFILLMENT OF

BACHELOR OF BUSINESS ADMINISTRATION

E COMMERCE
(HTML)
Batch: 2022-2023
Submitted By: PROJECT GUIDE
(Simran Verma) (Dr. BP SINGH )
(01027901722) (PROFESSOR)

Trinity Institute of Innovations in Professional Studies


(Affiliated To Guru Gobind Singh Indraprastha University)
INDEX
S.N0. ASSIGNMENT NAME
1 PARAGRAPH
2 HAEDING
3 LIST IN HTML
4 NESTED LIST IN HTML
5 IMAGE
6 HYPERLINK
7 TABLE
8 DOCUMENT
9 FORM
10 FRAME
11 MARQUEE
12 VIDEO
13 AUDIO
14 BODY
15 TIME TABLE
ASSIGNMENT- 01
PARAGRAPH FORMATING

(coding)

<HTLM>

<HEAD>

<TITLE>paragraph</TITLE>

</HEAD>

<BODY bgColor="black">

<FONT SIZE="7">

<marquee><FONT COLOR="white">PARAGRAPH FORMATTING</MARQUEE>

<B><font color="white">A smile is a facial expression formed primarily by flexing


the muscles at the sides of the mouth.</b><br><br><br>

<u><font color="white"> Some smiles include a contraction of the muscles at the


corner of the eyes, an action known as </u><br><br><br><br>

</P>

</BODY>

</HTML>
(OUTPUT)
ASSIGNMENT- 02

HEADING

(CODING)

<HTML>

<HEAD>

<TITLE>USING HEADING</TITLE>

<BODY>

<H1>HEADING LEVEL ONE</H1>

<H2>HEADING LEVEL TWO</H2>

<H3>HEADING LEVEL THREE</H3>

<H4>HEADING LEVEL FOUR</H4>

<H5>HEADING LEVEL FIVE </H5>

<H6>HEAING LEVEL SIX</H6>

</BODY>

</HTML>
(output)
ASSIGNMENT- 03

LIST IN HTML

(coding)

<HTML>

<HEAD>

<TITLE> LIST </TITLE>

STEPS IN SOFTWARE LIFECYCLE

<OL START="A" TYPE="I">

<LI> SOFTWARE REQUIREMENT SPECIFICATION </LI>

<LI> DESIGN </LI>

<LI> CODING </LI>

<LI> TESTING </LI>

</OL>

STEPS IN SOFTWARE LIFECYCLE

<UL TYPE="DISC">

<LI> SOFTWARE REQUIREMENT SPECIFICATION </LI>

<LI> DESIGN </LI>

<LI> CODING </LI>

<LI> TESTING </LI>

</UL>
GLOSSARY OF ITEMS

<DL>

<DT><B>APPLET</B></DT>

<DD> IT IS THE NAME GIVEN TO DYNAMIC WEB PAGE WRITTEN USING JAVA
TECHNOLGY.</DD>

<DT><B>CGI<B></DT>

<DD>IT STAND FOR THE COMMON GATEWAY INTERFACE </DD>

</DL>

</BODY>

</HTML>

(output)
ASSIGNMENT- 04

NESTED LIST IN HTML

(CODING)

<html>

<body>

<marquee> WELCOME TO NESTED LIST</marquee>

<ol>

<li> fruits

<ul>

<li>summer fruits

<ol type="A">

<li>mango</li>

<li>watermelon</li>

</OL>

<LI>winter fruits

<OL type="a">

<li>grapes</li>

<li>oranges</li>

</ol>

</ul>

<li>vegetables
<ul>

<li>green vegetables

<ol type="A">

<li>spinach</li>

<li>corriander</li>

</OL>

<LI>non-green vegetables

<OL type="a">

<li>potato</li>

<li>onion</li>

</ol>

</ul>

<li>cereals

<ul>

<li>grains

<ol type="A">

<li>chickpeas</li>

<li>kidney beans</li>

</OL>

<LI>dal

<OL type="a">
<li>arhar</li>

<li>moong</li>

</ol>

</ul>

<li>fast foods

<ul>

<li>italian

<ol type="A">

<li>pizza</li>

<li>pasta</li>

</OL>

<LI>chineese

<OL type="a">

<li>momos</li>

<li>chowmien</li>

</ol>

</ul>

</ol>

</body>

</html>
(OUTPUT)
ASSIGNMENT- 05

IMAGE

(CODIND)

<html>

<head>

<title> image </title>

</head>

<body bgColor="yellow">

<center>

<marquee><h1 bgColor="white"> gateway of india </h1></marquee><br>

<hr><hr>

<p>

<img src="C:\Users\kesha\Desktop\gi.jpeg" alt= "gateway of india" border="10"


width="200" height="200">

<p font>The Gateway of India is an arch-monument built in the early 20th century
in the city of Mumbai (Bombay), India. It was erected to commemorate the
landing of King-Emperor George V, the first British monarch to visit India, in
December 1911 at Strand Road near Wellington Fountain.

The foundation stone was laid in March 1913 for a monument built in the Indo-
Islamic style, inspired by elements of 16th-century Gujarati architecture. The final
design of the monument by architect George Wittet was sanctioned only in 1914,
and construction was completed in 1924. The structure is a memorial arch made
of basalt, which is 26 metres (85 feet) high, with an architectural resemblance to a
triumphial arch as well as Gujarati architecture of the time.
After its construction, the Gateway was used as a symbolic ceremonial entrance to
India for important colonial personnel. The Gateway is also the monument from
where the last British troops left India in 1948, following Indian independence. It
is located on the waterfront at an angle, opposite the Taj Mahal Palace and Tower
Hotel and overlooks the Arabian Sea. Today, the monument is synonymous with
the city of Mumbai, and is amongst its prime tourist attractions.

<A HREF="file:///C:/Users/kesha/Desktop/.html"><BR> NEXT-TAJ MAHAL

<A HREF=<A HREF="file:///C:/Users/kesha/Desktop/india.html"><BR> PREVIOUS-


INDIA GATE

</p>

</body>

<html>
(OUTPUT)
(CODING)

<htmL>

<head>

<title> image </title>

</head>

<body bgColor="sky blue">

<center>

<marquee><h1 bgColor="white"> golden temple </h1></marquee><br>

<hr><hr>

<p>

<img src="file:///C:/Users/kesha/Desktop/gt.webp" alt= "golden temple"


border="10" width="200" height="200">

<p font>The Golden Temple (also known as the Harmandir Sahib, lit. 'abode of
God', Punjabi pronunciation: [ɦəɾᵊmən̪d̪əɾᵊ saːɦ(ɪ)bᵊ], or the Darbār Sahib, 'exalted
court', [d̪əɾᵊbaːɾᵊ saːɦ(ɪ)bᵊ][2]) is a gurdwara located in the city of Amritsar, Punjab,
India.[3][4] It is the preeminent spiritual site of Sikhism. It is one of the holiest
sites in Sikhism, alongside the Gurdwara Darbar Sahib Kartarpur in Kartarpur, and
Gurdwara Janam Asthan in Nankana Sahib.

The man-made pool on the site of the temple was completed by the fourth Sikh
Guru, Guru Ram Das, in 1577.[6][7] In 1604, Guru Arjan Dev, the fifth Sikh Guru,
placed a copy of the Adi Granth in Harmandir Sahib and is the prominent figure in
development of gurudwara who built it in the 16th Century.[3][8] The Gurdwara
was repeatedly rebuilt by the Sikhs after it became a target of persecution and
was destroyed several times by the Mughal and invading Afghan armies.[3][5][9]
Maharaja Ranjit Singh, after founding the Sikh Empire, rebuilt it in marble and
copper in 1809, and overlaid the sanctum with gold leaf in 1830. This has led to
the name the Golden Temple.

The Golden Temple is spiritually the most significant shrine in Sikhism. It became a
centre of the Singh Sabha Movement between 1883 and 1920s, and the Punjabi
Suba movement between 1947 and 1966. In the early 1980s, the Gurdwara
became a centre of conflict between the Indian government and a movement led
by Jarnail Singh Bhindranwale.[13] In 1984, Prime Minister Indira Gandhi sent in
the Indian Army as part of Operation Blue Star, leading to deaths of over 1,000
soldiers and civilians, as well as causing much damage to the Gurdwara and the
destruction of Akal Takht. The Gurdwara complex was rebuilt again after the 1984
damage.

<A HREF="file:///C:/Users/kesha/Desktop/sun%20temple.html"><BR> NEXT-


KONARK SUN TEMPLE

<A HREF="file:///C:/Users/kesha/Desktop/india.html"><BR> PREVIOUS-INDIA


GATE

</p>

</body>

</html>
(OUTPUT)
(CODING)

<htmL>

<head>

<title> image </title>

</head>

<body bgColor="orange">

<center>

<marquee><h1 bgColor="red"> india gate </h1></marquee><br>

<hr><hr>

<p>

<img src="C:\Users\kesha\Desktop\IG.jpg" alt= "taj mahal" border="10"


width="200" height="200">

<p font>The India Gate (formerly known as the All India War Memorial) is a war
memorial located near the Kartavya path on the eastern edge of the "ceremonial
axis" of New Delhi, formerly called duty path. It stands as a memorial to 84,000
soldiers of the British Indian Army who died between 1914 and 1921 in the First
World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and
elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300
servicemen's names, including some soldiers and officers from the United
Kingdom, are inscribed on the gate.[2] Designed by Sir Edwin Lutyens, the gate
evokes the architectural style of the memorial arch such as the Arch of
Constantine, in Rome, and is often compared to the Arc de Triomphe in Paris, and
the Gateway of India in Mumbai.

Following the Bangladesh Liberation war in 1972, a structure consisting of a black


marble plinth with a reversed rifle, capped by a war helmet and bounded by four
eternal flames, was built beneath the archway. This structure, called Amar Jawan
Jyoti (Flame of the Immortal Soldier), has since 1971 served as India's tomb of the
unknown soldier. India Gate is counted amongst the largest war

<A HREF="file:///C:/Users/kesha/Desktop/ajanta.html"><BR> NEXT-AJANTA CAVE

<A HREF="file:///C:/Users/kesha/Desktop/gateway.html"><BR> PREVIOUS-


GATEWAY OF INDIA

</p>

</body>

<html>
(OUTPUT)
(CODING)

<htmL>

<head>

<title> image </title>

</head>

<body bgColor="white">

<center>

<marquee><h1 bgColor="white"> konark sun temple </h1></marquee><br>

<hr><hr>

<p>

<img src="file:///C:/Users/kesha/Desktop/KST.webp" alt= "konark sun temple"


border="10" width="200" height="200">

<p font>Konark Sun Temple is a 13th-century CE (year 1250) Sun temple at Konark
about 35 kilometres (22 mi) northeast from Puri city on the coastline in Puri
district, Odisha, India. The temple is attributed to king Narasimhadeva I of the
Eastern Ganga dynasty about 1250 CE.

Dedicated to the Hindu Sun God Surya, what remains of the temple complex has
the appearance of a 100-foot (30 m) high chariot with immense wheels and
horses, all carved from stone. Once over 200 feet (61 m) high, much of the temple
is now in ruins, in particular the large shikara tower over the sanctuary; at one
time this rose much higher than the mandapa that remains. The structures and
elements that have survived are famed for their intricate artwork, iconography,
and themes, including erotic kama and mithuna scenes. Also called the Surya
Devalaya, it is a classic illustration of the Odisha style of Architecture or Kalinga
architecture.
The cause of the destruction of the Konark temple is unclear and still remains a
source of controversy.[7] Theories range from natural damage to deliberate
destruction of the temple in the course of being sacked several times by Muslim
armies between the 15th and 17th centuries.[1][7] This temple was called the
"Black Pagoda" in European sailor accounts as early as 1676 because it looked like
a great tiered tower which appeared black.[6][8] Similarly, the Jagannath Temple
in Puri was called the "White Pagoda". Both temples served as important
landmarks for sailors in the Bay of Bengal.

The temple that exists today was partially restored by the conservation efforts of
British India-era archaeological teams. Declared a UNESCO World Heritage Site in
1984,[1][2] it remains a major pilgrimage site for Hindus, who gather here every
year for the Chandrabhaga Mela around the month of February.

<A HREF="file:///C:/Users/kesha/Desktop/ajanta.html"><BR> NEXT- AJANTA CAVE

<A HREF="file:///C:/Users/kesha/Desktop/golden.html"><BR> PREVIOUS-GOLDEN


TEMPLE

</p>

</body>

</html>
(OUTPUT)
(CODING)

<htmL>

<head>

<title> image </title>

</head>

<body bgColor="pink">

<center>

<marquee><h1 bgColor="white"> taj mahal </h1></marquee><br>

<hr><hr>

<p>

<img src="C:\Users\kesha\Desktop\tj.jpg" alt= "taj mahal" border="10"


width="200" height="200">

<p font>An immense mausoleum of white marble, built in Agra between 1631 and
1648 by order of the Mughal emperor Shah Jahan in memory of his favourite wife,
the Taj Mahal is the jewel of Muslim art in India and one of the universally
admired masterpieces of the world's heritage.

The Taj Mahal is located on the right bank of the Yamuna River in a vast Mughal
garden that encompasses nearly 17 hectares, in the Agra District in Uttar Pradesh.
It was built by Mughal Emperor Shah Jahan in memory of his wife Mumtaz Mahal
with construction starting in 1632 AD and completed in 1648 AD, with the
mosque, the guest house and the main gateway on the south, the outer courtyard
and its cloisters were added subsequently and completed in 1653 AD.

The existence of several historical and Quaranic inscriptions in Arabic script have
facilitated setting the chronology of Taj Mahal. For its construction, masons,
stone-cutters, inlayers, carvers, painters, calligraphers, dome builders and other
artisans were requisitioned from the whole of the empire and also from the
Central Asia and Iran. Ustad-Ahmad Lahori was the main architect of the Taj
Mahal.

The Taj Mahal is considered to be the greatest architectural achievement in the


whole range of Indo-Islamic architecture. Its recognised architectonic beauty has a
rhythmic combination of solids and voids, concave and convex and light shadow;
such as arches and domes further increases the aesthetic aspect.

The colour combination of lush green scape reddish pathway and blue sky over it
show cases the monument in ever changing tints and moods. The relief work in
marble and inlay with precious and semi precious stones make it a monument
apart.

<A HREF="file:///C:/Users/kesha/Desktop/india.html"><BR> NEXT-INDIA GATE

<A HREF="file:///C:/Users/kesha/Desktop/New%20folder/gateway.html"><BR>
PREVIOUS-GATEWAY OF INDIA

</p>

</body>

<html>
(OUTPUT)
(CODING)

<htmL>

<head>

<title> image </title>

</head>

<body bgColor="aqua">

<center>

<marquee><h1 bgColor="aqua"> ajanta caves </h1></marquee><br>

<hr><hr>

<p>

<img src="C:\Users\kesha\Desktop\AJ.jpeg" alt= "ajanta caves" border="10"


width="200" height="200">

<p font>The Ajanta Caves are 29 rock-cut Buddhist cave monuments dating from
the second century BCE to about 480 CE in the Aurangabad District of
Maharashtra state in India.[1][2][3] Ajanta Caves are a UNESCO World Heritage
Site.[2] Universally regarded as masterpieces of Buddhist religious art, the caves
include paintings and rock-cut sculptures described as among the finest surviving
examples of ancient Indian art, particularly expressive paintings that present
emotions through gesture, pose and form.The caves were built in two phases, the
first starting around the second century BCE and the second occurring from 400 to
650 CE, according to older accounts, or in a brief period of 460–480 CE according
to later scholarship.The Ajanta Caves constitute ancient monasteries (Chaityas)
and worship-halls (Viharas) of different Buddhist traditions carved into a 75-metre
(246 ft) wall of rock.The caves also present paintings depicting the past lives [10]
and rebirths of the Buddha, pictorial tales from Aryasura's Jatakamala, and rock-
cut sculptures of Buddhist deities.Textual records suggest that these caves served
as a monsoon retreat for monks, as well as a resting site for merchants and
pilgrims in ancient India.[8] While vivid colours and mural wall painting were
abundant in Indian history as evidenced by historical records, Caves 16, 17, 1 and
2 of Ajanta form the largest corpus of surviving ancient Indian wall-painting.[13]

The Ajanta Caves are mentioned in the memoirs of several medieval-era Chinese
Buddhist travellers.[14] They were covered by jungle until accidentally
"discovered" and brought to Western attention in 1819 by a colonial British officer
Captain John Smith on a tiger-hunting party.[15] The caves are in the rocky
northern wall of the U-shaped gorge of the river Waghur,[16] in the Deccan
plateau.[17][18] Within the gorge are a number of waterfalls, audible from
outside the caves when the river is high.

<A HREF="file:///C:/Users/kesha/Desktop/golden.html"><BR> NEXT-GOLDEN


TEMPLE

<A HREF="file:///C:/Users/kesha/Desktop/sun%20temple.html"><BR> PREVIOUS-


KONARK SUN TEMPLE

</p>

</body>

</html>
(OUTPUT)
ASSIGNMENT- 06

HYPERLINK

(CODING)
<HTML>

<HEAD>

<TITLE> LINK </TITLE>

</HEAD>

<BODY>

<FONT SIZE ="48" INDIAN MONUMENT><BR>

INDIAN MONUMENTS </A><BR>

<A HREF="file:///C:/Users/kesha/Desktop/New%20folder/gateway.html"><BR>

Gateway Of India </A><BR>

<A HREF="file:///C:/Users/kesha/Desktop/.html"><BR>

Taj Mahal </A><BR>

<A HREF="file:///C:/Users/kesha/Desktop/india.html"><BR>

India Gate </A><BR>

<A HREF="file:///C:/Users/kesha/Desktop/ajanta.html"><BR>

Ajanta Cave </A><BR>

<A HREF="file:///C:/Users/kesha/Desktop/sun%20temple.html"><BR>

Konark Sun temple </A><BR>

<A HREF="file:///C:/Users/kesha/Desktop/golden.html"><BR>

Golden Temple </A><BR>

</A>

</BODY>

</HTML>
(OUTPUT)
ASSIGNMENT- 07

TABLE

(CODING)

<HTML>

<HEAD>

<TITLE> TABLE </TITLE>

</HEAD>

<BODY BGCOLOR="PINK">

<CENTER>

<MARQUEE> EMPLOYEE RECORD </MARQUEE>

<CAPTION> EMPLOYEE RECORD </CAPTION>

<TABLE BORDER="10" CELL SPACING="150" CELL PADDING="150" ALIGN="CENTER"


HEIGHT="100" WIDTH="100" BGCOLOR="WHITE"3:01 PM 4/10/2023>

<TR>

<TH> SERIAL NO. </TH>

<TH> NAME </TH>

<TH> AGE </TH>

<TH> SALARY </TH>

</TR>

<TR>

<TD> 1 </TD>

<TD> SUMAN </TD>


<TD> 40 </TD>

<TD> 50000 </TD>

</TR>

<TR>

<TD> 2 </TD>

<TD> RTITA </TD>

<TD> 45 </TD>

<TD> 55000 </TD>

</TR>

<TD> 03 </TD>

<TD> SURAJ </TD>

<TD> 30 </TD>

<TD> 56000 </TD>

</TR>

<TD> 4 </TD>

<TD> SIMRAN </TD>

<TD ROWSPANE="10"> 35 </TD>

<TD> 60000 </TD>

</TR>

<TD> 5 </TD>

<TD> INSHAN </TD>

<TD> 46 </TD>

<TD> 57000 </TD>


</TR>

<TD> 6 </TD>

<TD> AVEER </TD>

<TD> 39 </TD>

<TD> 58000 </TD>

</TR>

<TD> 7 </TD>

<TD> ARADHYA </TD>

<TD> 28 </TD>

<TD> 54000 </TD>

</TR>

<TD> 8 </TD>

<TD> VISHU </TD>

<TD> 38 </TD>

<TD> 58000 </TD>

</TR>

<TD> 9 </TD>

<TD> SAMYK </TD>

<TD> 49 </TD>

<TD> 59000 </TD>

</TR>

<TD> 10 </TD>

<TD> EMILY </TD>


<TD> 55 </TD>

<TD> 59000 </TD>

</TR>

</BODY>

</HTML>
(OUTPUT)
ASSIGNMENT- 08

DOCUMENT LAYOUT
(CODING)

<HTML><HEAD>

<TITLE>UNTITLED DOCUMNET</TITLE>

</HEAD>

<BODY><TABLE WIDTH="100%" BORDER="0">

<TR>

<TD COLSPAN="2" STYLE="BACKGROUND-COLOR:grey">

<H1> THIS IS THE WEB PAGE LAYOUT USING TABLE </H1>

</TD></TR>

<TR VALIGN="TOP">

<TD STYLE="BACKGROUND-COLOR:GREY;WIDTH:100PX;TEXT-ALING:TOP">

<B>MAIN MENU</B><BR/>

HTML<BR />

ASP<BR/>

JAVA

</TD>

<TD STYLE="BACKGROUND-COLOR:GREY;HEIGHT:200PX; WIDTH:300PX;TEXT-

ALIGN:TOP;">TECHNICAL AND MANAGERIAL TUTORIALS

</TD></TR><TR>

<TD COLSPAN="2" SYTLE="BACKGROUND-COLOR:GREY">

<CENTER>COPYRIGHT@2014 TPPL.ORG.IN</CENTER>

</TD></TR></TABLE></BODY
(OUTPUT)
ASSIGNMENT- 09

FORM

(CODING)

<html>

<head>

<title> google form </title>

<h1> TRINITY.COM </h1>

<body bgcolor="lightgreen">

<marquee behaviour="alternate"><h1> REGISTRATION FORM</h1></marquee>

<br>

<form>

<label> Firstname </label>

:&nbsp;&nbsp;&nbsp;&nbsp<input type="text" name="firstname" size="15"/>


<br>

<label> Middlename: </label>

<input type="text" name="middlename" size="15"/> <br>

<label> Lastname: </label>

:&nbsp;&nbsp;&nbsp;&nbsp<input type="text" name="lastname" size="15"/>


<br>

<br>

<label>

Gender :
</label><br>

<input type="radio" name="male"/> Male <br>

<input type="radio" name="female"/> Female <br>

<input type="radio" name="other"/> Other<br>

<br>

Phone :

<input type="text" name="phone" size="10"/> <br> <br>

Address

<br>

<textarea cols="60" rows="3" value="address">

</textarea>

<br>

<br>

Email:

<input type="email" id="email" name="email"/> <br>

<br>

<br>

dob

dd <select>

<option> 1 </option>

<option> 2 </option>
<option> 3 </option>

<option> 4 </option>

<option> 5</option>

<option> 6 </option>

<option> 7 </option>

<option> 8 </option>

<option> 9 </option>

<option> 10 </option>

<option> 11 </option>

<option> 12 </option>

<option> 13 </option>

<option> 14 </option>

<option> 15 </option>

</select>

<br>

<br>

mm<select>

<option> 1 </option>

<option> 2 </option>

<option> 3 </option>

<option> 4 </option>
<option> 5 </option>

<option> 6 </option>

</select>

<br>

<br>

yy<select>

<option> 1991 </option>

<option> 1992 </option>

<option> 1993 </option>

<option> 1994 </option>

<option> 1995 </option>

</select><br><br>

<input type="button" value="submit"/>

</form>

</body>

</head>

</html>
(OUTPUT)
ASSIGNMENT- 10

FRAMES

(CODING)

<html>

<head>

<title> Frame</title>

</head>

<frameset cols="33.33%,33.33%,33.34%">

<frameset rows="33.33%,33.33%,33.34%">

<frame src="C:\Users\kesha\Desktop\1.jpeg" scrolling="no" frameborder="5"


name="top"/>

<frame src="C:\Users\kesha\Desktop\2.jpeg" scrolling="no" frameborder="5"


name="Middle"/>

<frame src="C:\Users\kesha\Desktop\3.jpeg" scrolling="no" frameborder="5"


name="bottom">

</frameset>

<frameset rows="33.33%,33.33%,33.34%">

<frame src="C:\Users\kesha\Desktop\4.jpeg" scrolling="no" frameborder="5"


name="top"/>

<frame src="C:\Users\kesha\Desktop\5.jpeg" scrolling="no" frameborder="5"


name="Middle"/>

<frame src="C:\Users\kesha\Desktop\6.jpeg" scrolling="no" frameborder="5"


name="bottom">

</frameset>
<frameset rows="33.33%,33.33%,33.34%">

<frame src="C:\Users\kesha\Desktop\7.jpeg" scrolling="no" frameborder="5


name="top"/>

<frame src="C:\Users\kesha\Desktop\8.jpeg" scrolling="no" frameborder="5"


name="middle"/>

<frame src="C:\Users\kesha\Desktop\9.jpeg" scrolling="no" frameborder="5"


name="bottom"/>

</frameset>

</frameset>

<body>

hello

</body>

</html>
OUTPUT)
ASSIGNMENT-11

MARQUEE

(CODING)

<html>

<head>

<title>HTML marquee Tag</title>

</head>

<body>

<marquee>This is basic example of marquee</marquee><br>

<marquee width = "50%">This example will take only 50%


width</marquee><br>

<marquee direction = "right">This text will scroll from left to


right</marquee><br>

<marquee direction = "up">This text will scroll from bottom to


up</marquee><br>

</body>

</html>
(OUTPUT)
ASSIGNMENT- 12

VIDEO

(CODING)

<html>

<body>

<video width="320" height="240" controls>

<source src="movie.mp4" type="video/mp4">

<source src="movie.ogg" type="video/ogg">

Your browser does not support the video tag.

</video>

</body>

</html>
(OUTPUT)
ASSIGNMENT- 13

AUDIO

(CODING)

<html>

<body>

<audio controls>

<source src="horse.ogg" type="audio/ogg">

<source src="horse.mp3" type="audio/mpeg">

Your browser does not support the audio element.

</audio>

</body>

</html>
(OUTPUT)
ASSIGNMENT-14

BODY

(CODING)

<HTML>

<HEAD>

<TTILE>BODY</TITLE>

<BODY BGCOLOR= “DARK LAVENDER”>

</BODY>

<HEAD>

</HTML>

(OUTPUT)
ASSIGNMENT- 15

TIME TABLE

(CODING)

<html>

<p align="centre">

<title> table </title>

<body Bgcolor="YELLOW" ><br><br>

<marquee>

<caption> <fontcolor="red"> TIME TABLE </caption></marquee></font>

<table border="10" cell spacing="10" cell padding="10" Align="center" height="400" width="400"


bgcolor="pink" >

<tr>

<th> DAY</th>

<th>CLASS 1 </th>

<th> CLASS 2</th>

<th> CLASS 3</th>

<th>LUNCH BREAK</th>

<th> CLASS 4</th>

<th> CLASS 5</th></tr>

<tr>

<td>MONDAY </td>

<td> BUSINESS</td>
<td>DTB</td>

<td>E-COMMERCE</td>

<td>L</td>

<td>CA</td>

<td>BUSINESS COMMUNICATION</td></tr>

<tr>

<td>TUESDAY </td>

<td> BUSINESS</td>

<td>CA</td>

<td>DTB </td>

<td>U</td>

<td>BUSINESS COMMUNICATION</td>

<td>E-COMMERCE</td></tr>

<tr>

<td>WEDNESDAY </td>

<td>CA </td>

<td>BUSINESS</td>

<td>DTB</td>

<td>N</td>

<td>BUSINESS COMMUNICATION</td>

<td>E-COMMERCE(LAB)</td></tr>

<tr>

<td>THURSDAY</t

<td> CA </td>
<td>BUSINESS</td>

<td>BUSINESS COMMUNICATION</td>

<td>C</td>

<td>DTB</td>

<td>E-COMMERCE(LAB)</td>

</tr>

<td>FRIDAY</td>

<td> CA</td>

<td>DTB</td>

<td> BUSINESS COMMUNICATION</td>

<td>H</td>

<td>BUSINESS</td>

<td>MINOR PROJECT</td></tr>

</body>

</html>

(OUTPUT)

You might also like