You are on page 1of 25

Q1.

Create an HTML Basic Web page using basic


tags and formatting tags. Write a paragraph with
proper headings and subheadings and relevant text
with some images.
<HTML>
<HEAD>
<TITLE>My First Web Page</TITLE>
</HEAD>
<BODY bgcolor="yellow">
<center>
<H1> Our Country : India </H1>
<center>
<IMG SRC="download .jpeg" height="250"
width="200">
</center>
<H2>About India</H2>
<p>
<FONT Color="red" Size="5" Face="Times New
Roman">
<b>India is spread over a large geographical area. In
terms of area,</br></br>
It is the 7<SUP>th</SUP> largest country while in
terms of Population,</br></br>
it is the 2<SUP>nd</SUP> largest country in the
world.</FONT></p>
<center>
<h2>Some facts about India are as follows</h2>
<ul>
<li><b>Area : Approx 3.28 million sq.km</b></li>
<li><b>North to South extension : Approx 3,200
km</b></li>
<li><b>East to west extension : Approx 2900
km</b></li>
</ul>
</center>
</BODY>
</HTML>
Q 2.Write an HTML code to display your
education details in a tabular format.
<html>
<head>
<title>Education details</title>
</head>
<body>
<h1 align="center"
style="color:blue">EDUCATION
DETAILS</h1><br><br>
<center>
<table border="4" width="4" bordercolor="red"
cellspacing="4" cellpadding="4">
<th>S.No</th>
<th>Course</th>
<th>Board/University</th>
<th>School/College</th>
<th>Year of Passing</th>
<th>Percentage</th>
<tr>
<td>1</td>
<td>10</td>
<td>CBSE</td>
<td>Vidyaa World School</td>
<td>2008</td>
<td>90</td>
</tr>
<tr>
<td>2</td>
<td>12</td>
<td>CBSE</td>
<td>Vidyaa World School</td>
<td>2010</td>
<td>95</td>
</tr>
</table>
</center>
</body>
</html>
Q3. Write an HTML code to illustrate the usage of
the following:
A) Ordered List, B) Unordered List,
C) Definition List.
<html>
<head>
<title> My First Page </title>
</head>
<body bg color=pink>
<h1 style="color:red">Dispersion OF Light</h1>
<h2>1.Ordered List</h2>
<OL type='square'>
<LI><b>Red</b>
<LI><b>Orange</b>
<LI><b>Yellow</b>
<LI><b>Green</b>
<LI><b>Blue</b>
<LI><b>Indigo</b>
<LI><b>Violet</b>
</OL><br>
<h2>2.Unordered List</h2>
<UL type='A'>
<b><LI>Red</b>
<b><LI>Orange</b>
<b><LI>Yellow</b>
<b><LI>Green</b>
<b><LI>Blue</b>
<b><LI>Indigo</b>
<b><LI>Violet</b>
</UL><br>
<h2> 3.Definition List</h2>
<dl>
<dt><b>Red</dt>
<dd><b>Red color has the highest
wavelength.</b></dd>
<dt><b>Violet</b></dt>
<dd><b>Violet color has the shortest
wavelength.</b></dd>
</body>
</html>
Q4. Write an HTML code to demonstrate the usage
of inline CSS.
<html>
<body>
<h1>Inline Style </h1>
<p style="color: blue;font-size:35px;">
I have tried this inline CSS at first time .
</p>
</body>
</html>

Q5. Write an HTML code to demonstrate the usage


of internal CSS.
<html>
<head>
<style>
body {background-color: linen;}
h1 {color: Red;
margin-left: 80px;}
p {color:podina:}
</style>
</head>
<body>
<h1>Internal Style.</h1>
<p>I have tried this Internal CCS at first time.</p>
</body>
</html>

Q6. Create a page to show different character


formatting (B, I, U, SUB, SUP) tags.
<html>
<head>
<title>Using tags</title>
</head>
<body>
<p><i><b><u>log</i> b m<sup>p</sup> = p
log<sub>b</sub> m</u></b></i></p>
</body>
</html>

Q7. Create a web page using Embedded CSS and


insert the audio as"myaudio.mp3".
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h2>Click play button to play audio</h2>
<audio src="Ghaint-Patola-Offlicence.mp3"
controls></audio>
</body>
</html>

Q8. Insert an image and create a link such that


clicking on image takes user to other page.
<html>
<head>
<title>Linking Image</title>
</head>
<body>
<p>Click following image</p>
< a href =”https://www.tutorialspaint.com”
target=”_sdf”>
< img src=”/image/logo.png”alt=can not
load></a>
</body>
</html>
Q9.Make mystyle.css file having following type of
specification and link this file in html file:
1. Body: background ivory
2. Paragraph: 12 point, arial, brown font
3. Heading: 14-24 points, arial, red font
4. Horizontal Rule: color=green / background
image
5. Table: background color-pink; border-2; text-
align=right; color-brown;
<html>
<head>
<title>style sheet</title>
< link ref –“stylesheet”type=”text/css”href
</head>
<body>
<h1>External style sheet demo</h1>
<hr size = 5 color=green>
<table border=>
<tr>
<th>S.no</th>
<th>Player</th>
<th>Team</th>
</tr><tr>
<td>1</td>
<td>Virat kholi</td>
<td>India</td>
</tr><tr>
<td>2</td>
<td>Travis Head</td>
<td>Austrlia</td>
</tr>
</table>
</body>
</html>

Q10. Prepare a list and table given below.


A)<html>
<body>
<ol>
<li>Educational Movies</li>
<ul type="circle">
<li>3 Idiots</li>
<li>Tare Jamin par</li>
<li>Chalk n duster</li>
<li>Pathshala</li>
</ul>
<li>Educational Web series
<ul type="circle">
<li>Kota Factory</li>
<li>Lakho me ek</li>
<li>Engineering Girls</li>
</ul>
<li>Cultural Movies</li>
<ul type="circle">
<li>Family Drama</li>
<ol type='i'>
<li>Hum sath sath hai</li>
<li>Hum apke hai kaun</li>
<li>Vivah</li>
</ol>
<li>Indian Culture
<ol type="i">
<li> Lagaan</li>
<li> Pardesh</li>
</ol>
</ul>
</ol>
</body></html>
B)<HTML>
<BODY>
<TABLE BORDER = "1">
<TR> <TH ROWSPAN = "2"> Serial No </TH>
<TH ROWSPAN = "2"> Class </TH> <TH colspan
= "3" ALIGN = "CENTER"> Number of Students
</TH> </TR>
<TR ALIGN = "CENTER">
<TD> English </TD>
<TD> Hindi </TD>
<TD> Regional </TD>
</TR>
<TR ALIGN = "CENTER">
<TD> 1 </TD>
<TD> X A </TD>
<TD> 35 </TD>
<TD> 10 </TD>
<TD> 6 </TD>
</TR>
<TR ALIGN = "CENTER">
<TD> 2 </TD>
<TD> X B </TD>
<TD> 31 </TD>
<TD> 15 </TD>
<TD> 4 </TD>
</TR>
</TABLE>
</BODY>
</HTML>
This is to certify that Asmit Gangwar of class 10th
lily has successfully completed the project work on
chemistry for class X AISSCE practical examination
of the Central Board of Secondary Education in the
year 2023-2024. It is further certified that this
project is the individual work of the candidate.

Subject Teacher Signature


__________

Principal Signature
__________
I would like to express my special thanks of
gratitude to my teacher Mr.Ankit Gupta, who gave
me the golden opportunity to do this wonderful
project of Computer .
Who also helped me in completing my project. I
came to know about so many new things I am really
thankful to them. Secondly I would also like to thank
my parents and friends who helped me a lot in
finalizing this project within the limited time frame.
Thank You
Asmit Gangwar
Xth lily
For completing my practical file I have taken help
from my friends , teachers and also some sites.From
which I have taken the help for completing the
practical file the things are as follows:-
 www.google.com
 www.Youtube.com
 www.w3school.com

You might also like