Practical Programs-10th
Practical Programs-10th
Bonafide Certificate
This is to certify that the Practical file is done
by
Practical Examination
Date:
NAME:______________________
CLASS:_____________________
ROLL NO:___________________
INDEX
CODE:
<HTML>
<HEAD>
<TITLE> MY FIRST WEB PAGE </TITLE>
</HEAD>
<BODY>
THIS IS AN HTML DOCUMENT
</BODY>
</HTML>
OUTPUT:
RESULT:
Thus the static web page has been created and output was verified
successfully.
DATE:
Ex.No:2
Write the steps for Creating Static web pages with images and Lists in
HTML.
AIM:
To create Static web pages with images and Lists in HTML.
PROCEDURE:
STEP 1: Open a blank Notepad file.
STEP 2: Type the coding in notepad.
STEP 3: Put the Save As Type in the save as dialog box as All files.
STEP 4: Name the file as web page staticimages.html.
STEP 5: View the web page in a browser.
CODE:
<html>
<head>
<title> Float Property</title>
<style type = "text/css">
body{background-color:yellow}
img{float:right;}
h1{font-family:border;
font-weight:border;
font-size:20pt}
p{font-size:18pt;border=style:groove;background-color:cyan;
font-weight:bolder}
h3{background-color:pink;font-weight:bold;font-size:16pt;
font-family:Monotype Corsiva}
</style>
</head>
<body>
<h1> Storage Units</h1>
<p> The different storage units are: </p>
<img src="computer.jpg">
<ul>
<li><h3> 1 KB = 2<sup>10</sup>bytes</h3></li>
<li><h3> 1 MB = 2<sup>10</sup>KB</h3></li>
<li><h3> 1 GB = 2<sup>10</sup>MB</h3></li>
<li><h3> 1 TB = 2<sup>10</sup>GB</h3></li>
<li><h3> 1 PB = 2<sup>10</sup>TB</h3></li>
</ul>
</body>
</html>
OUTPUT:
RESULT:
Thus the Static web pages with images and Lists in HTML was
created and output verified successfully.
DATE:
EX.No:3
Write the program by Using Style Sheets to enforce a format in an
HTML Page (CSS).
AIM:
To create a program by Using Style Sheets to enforce a format in an
HTML Page (CSS).
PROCEDURE:
STEP 1: Open a blank Notepad File.
STEP 2: Type the code in the notepad
STEP 3: Save the file as style.html. Set the Save As Type as All
Files.
STEP 4: Click on save from Save As dialog box. The file appears
With the icon of the default browser.
STEP 5: Open the file in the browser.
CODE:
<html>
<body>
</body>
</html>
OUTPUT:
RESULT:
Thus the Static web pages with images and Lists in HTML was
created and output verified successfully.
DATE:
EX.NO:4
Write the program to Embed Pictures, audio and Videos in an HTML
Page.
AIM:
To Embed Pictures, Audio and Videos in an HTML Page.
Click Here
STEP 1: Open a blank Notepad File.
STEP 2: Type coding in the notepad
STEP 3: Save the file as embed.html. Set the Save As Type as All
Files.
STEP 4: Click on save from Save As dialog box. The file appears
With the icon of the default browser.
STEP 5: Open the file in the browser.
CODE:
OUTPUT:
RESULT:
Thus Embed Pictures, audio and Videos in an HTML Page was done
and output was Verified successfully.
DATE:
EX.NO:5
Write the steps to create a web page with tables and frames in an
HTML Page
AIM:
To create a web page with tables and frames in an HTML Page
PROCEDURE:
STEP 1: Open a blank Notepad File.
STEP 2: Type coding in the notepad
STEP 3: Save the file as tables.html. Set the Save As Type as All
Files.
STEP 4: Click on save from Save As dialog box. The file appears
With the icon of the default browser.
STEP 5: Open the file in the browser.
CODE:
OUTPUT:
RESULT:
Thus the web page with tables and frames in an HTML Page
Was done and the output was verified successfully.
DATE:
EX.NO:6
Write the steps to Decorate web pages using graphical elements in
HTML.
AIM:
To decorate web pages using graphical elements in HTML.
PROCEDURE:
STEP 1: Open a blank Notepad File.
STEP 2: Type the code in the notepad
STEP 3: Save the file as graphics.html . Set the Save As Type as All
Files.
STEP 4: Click on save from Save As dialog box. The file appears
With the icon of the default browser.
STEP 5: Open the file in the browser.
CODE:
OUTPUT:
RESULT:
Thus the web pages are decorated with graphical elements in HTML
and output was verified successfully.
DATE:
Ex.No:7
Write the steps to create a website using several web pages.
Note the following points while generating the webpage:
Link color is black, background color is yellow and visited link color
is green.
❖ Title of the page is “Wildlife in India”.
AIM:
To create a website using several web pages.
PROCEDURE:
STEP 1: Open a blank Notepad File.
STEP 2: Type coding in the notepad
STEP 3: Save the file as graphics.html. Set the Save As Type as All
Files.
STEP 4: Click on save from Save As dialog box. The file appears
With the icon of the default browser.
STEP 5: Open the file in the browser.
CODE:
OUTPUT:
RESULT:
Thus websites are created with several web pages in HTML and
output was verified successfully.
DATE:
EX.NO:8
Write a program to work with HTML forms: Text box, Radio buttons,
and Checkbox, Password, List and Combo box.
AIM:
To write a program to work with HTML forms: Text box, Radio
buttons, and Checkbox, Password, List and Combo box.
TAGS:
Text Box:
<Input type = “Text”>
It is a Single line text input field in which the user can enter text.
Radio Buttons:
<Input type = “Radio”>
It specifies a set of controls that are linked so that only one radio
button among each set is selected at a time.
Check Box:
Password:
List:
Combo Box:
OUTPUT:
RESULT: