Name : Sameer Sajwan Course/Sec : BCA/F2 ROLL NO: 50
Objective 1: Create an XHTML web page that demonstrates the use
of the following XHTML tags – Paragraphs,Heading, and characters
entities.
HTML Code:
<!DOCTYPE html>
<html>
<body>
<h1><center>objective 1</center></h1>
<p>Hypertext markup language (HTML) is a scripting language that
web browser use to structure and display web pages .HTML
elements which are a series of instructions, tell the browser how to
display content , such as heading , paragraphs and links. for example,
html can structure content into lists, paragraphs ,images, and data
tables.</p>
<h1>HTML heading 1</h1>
<h2>HTML heading 2</h2>
<h3>HTML heading 3</h3>
<h4>HTML heading 4</h4>
<h5>HTML heading 5</h5>
<h6>HTML heading 6</h6>
<h1>HTML Entity Example</h1>
<h2>Use of   space character: </h2>
<h2>Use of single quote sign: '</h2>
<h2>Use of double quote sign: "</h2>
<h2>Use of less than : <</h2>
<h2>Use of less than : <</h2>
Name : Sameer Sajwan Course/Sec : BCA/F2 ROLL NO: 50
<h2>Use of greater than : ></h2>
<h2>Use of Copyright : ©</h2>
<h2>Use of Trademark : ®</h2>
<h2>Use of Ampersand(and) sign : &</h2>
</body>
</html>
Name : Sameer Sajwan Course/Sec : BCA/F2 ROLL NO: 50
OUTPUT:
Hypertext markup language (HTML) is a scripting language that web browser use
to structure and display web pages .HTML elements which are a series of
instructions, tell the browser how to display content , such as heading , paragraphs
and links. for example, html can structure content into lists, paragraphs ,images,
and data tables.
HTML heading 1
HTML heading 2
HTML heading 3
HTML heading 4
HTML heading 5
HTML heading 6
HTML Entity Example
Use of space character:
Use of single quote sign: '
Use of double quote sign: "
Use of less than : <
Use of less than : <
Use of greater than : >
Use of Copyright : ©
Use of Trademark : ®
Use of Ampersand(and) sign : &
Name : Sameer Sajwan Course/Sec : BCA/F2 ROLL NO: 50
Objective 2: Create a hyper link, page that demonstrate the use of
following XHTML tags ,Page Headings & Character or Entities use
for Hyper link Anchor Tag?
HTML code:
<!DOCTYPE html>
<html>
<body>
<h1> Objective 2 </h1>
<a href = "[Link] Me...</a>
</body>
</html>
Name : Sameer Sajwan Course/Sec : BCA/F2 ROLL NO: 50
OUTPUT:
Name : Sameer Sajwan Course/Sec : BCA/F2 ROLL NO: 50
Objective 3: Create a hyper link with page that demonstrate the use
of images, Attributes?
HTML CODE :
<!DOCTYPE html>
<html>
<body>
<h1> Objective 3 </h1>
<img src = "[Link]" width="300" height="300" >
</body>
</html>
Name : Sameer Sajwan Course/Sec : BCA/F2 ROLL NO: 50
OUTPUT
Objective 3
Name : Sameer Sajwan Course/Sec : BCA/F2 ROLL NO: 50
OBJECTIVE 4 : Create an XHTML web page that demonstrate the
usage of order , unorder & description/definition list.
HTML CODE :
<!doctype html>
<html>
<head>
USE of OL, UL, DL Tags
<title>
Topper Engine
</title>
</HEAD>
<body>
<ol><LI>DRINKS:</LI>
<oL><LI>COCA-COLA</LI>
<LI>MAJA</LI>
<LI>RED BULL</LI></oL>
<LI>SPORTS:</LI>
<OL><LI>CRICKET</LI>
<LI>FOOTBALL</LI>
<LI>TENNIS</LI>
</OL></ol><br><br>
<ul><LI>DRINKS:</LI>
<uL><LI>COCA-COLA</LI>
<LI>MAJA</LI>
Name : Sameer Sajwan Course/Sec : BCA/F2 ROLL NO: 50
<LI>RED BULL</LI>
</uL><LI>SPORTS:</LI>
<uL><LI>CRICKET</LI>
<LI>FOOTBALL</LI>
<LI>TENNIS</LI>
</uL></ul><br><br>
<dl><dt>India</dt>
<dd>Total population according to year 2023 is 142.86 crores.</dd>
<dt>China</dt>
<dd>Total population according to year 2023 is 142.57
crores.</dd></dl>
</body>
</HTML>
Name : Sameer Sajwan Course/Sec : BCA/F2 ROLL NO: 50
OUTPUT: