IT Practicals
IT Practicals
Part:1
<!DOCTYPE html>
<head.
<title>
tata group
<meta charset="utf-8">
<style>
h1{border-style:dotted}
p{color:red;font-size:15pt}
b{text-decoreation:overline}
u{text-align:right}
</style>
</head>
<body>
<h1 align="center">
<p>
66% of the equity share capital of tata sons is held by philanthropic trust,
</p>
<b>Governance Philosophy</b><br><br>
<br><br>
</body>
Output:
SOP 1
Part:2
<!DOCTYPE html>
<html>
<head>
<title>
Forms
</title>
<meta charset="utf-8">
<style>
h1{border-style:dashed}
body{background-color:aqua}
</style>
</head>
<body>
<Form name="f1">
<br><br>
</form>
</body>
</html>
Output:
SOP 2:Create a webpage using HTML and CSS code to design a web
page as the layout displayed below.
<!DOCTYPE html>
<html><head><style>
aside{background-color:yellow;height:35%;width:49%;float:left;border:solid;}
section{background-color:pink;height:51%;width:50%;float:right;border:solid;}
header{background-color:#add8e6;color:pink;width:96%;height:98%;color:#e75480;text
align:center;padding:30px;}
body{font-size:35px;border:solid;}
</style></head><body>
<header>Tourist places</header>
<aside>City
<ol>
<li>Pune</li>
<li>Banglore</li>
<li>Hyderabad</li>
<li>Delhi</li>
</ol>
</aside>
<ul>
<li>Shanivarwada</li>
<li>Kelkar museum</li>
<li>Sinhgad fort</li>
<li></li>
</ul></section></body></html>
Output:
SOP 3: Create a website using HTML and CSS code to design
webpages as follows.
Part 1:
<!DOCTYPE html>
<html><head><style>
h1{font-size:38px;font-family:monotype corsiva;font-weight:bold;}
form{font-size:28px;font-weight:bold;font-style:italic;}
body{background-color:gold}
</style></head>
<body><form>
width="120"><br>
</body></form></html>
Output:
SOP 3:
Part 2:
<!DOCTYPE html>
<html><head>
<style>
a:link{color:white;}
a:visited{color:orange;}
</style></head>
<body>
<h1>Transport Details</h1>
<ul>
<li>Destination - Delhi</li>
</ul>
OUTPUT:
SOP 4:Creation of website using HTM5 and CSS
<!DOCTYPE html>
<html><head>
<style type="text/css">
body{background-color: lightgrey;}
sans-serif;}
span{font-size: 20px;}
a{color:#FFFFFF;padding: 15px;}
</style></head><body><header>
<h1>News</h1>
<nav>
<a href="#"><span>H</span>OME</a>
<a href="#"><span>A</span>rchives</a>
<a href="#"><span>A</span>bout</a>
</nav></header><aside>
</aside><section>
<h2>Local News</h2>
<article>
<h3>Fire Fighters rescue man from building this is local news 1</h3>
This is the detail of rescue man. This is the story of how is rescued.
</p></article><article>
<h3>
</h3>
<p>(reporter name,date)</p>
<br>
</article></section><section>
<h2>National News</h2>
<article>
<p>This is the story snow storm. This is the story distoiral of storm.
<br>
This is the story part continued . This is the story text continued.</p>
</article>
<article>
<p>This is the story of not having power. This is the story text continued.
<br> This is the story bad effect. This is the story about destroyal of economy.
</p></article></section>
<footer>footer information</footer>
</body></html>
OUTPUT:
SOP 5: Use of Audio on web pages using HTML5
Part 1 :
<!DOCTYPE html>
<head>
</title>
</head>
<body>
</audio>
</body>
</html>
OUTPUT:
SOP 5
Part 2:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h2>
The text between the audio tags will only be display in browser
<ol>
<li>mp3audio/mpeg</li>
<li>ogg-audio/ogg</li>
<li>wav-audio/wav</li>
</ol>
</audio>
</body>
</html>
OUTPUT:
SOP 7:Use of video on web pages using html5.
Part 1:
<!DOCTYPE html>
<head>
</title>
</head>
<body>
</video>
</body>
</html>
OUTPUT:
SOP 6:
Part 2:
<doctype html>
<html>
<head>
<title>
</head>
<body>
<h2>
The text between the audio tags will only be displayed in browsers that do not support the audio
element.</h2>
<ol>
<li>mp3-audio/mpeg</li>
<li>ogg-audio/ogg</li>
<li>wav-audio/wav</li>
</ol>
</audio>
</body>
</html>
OUTPUT:
SOP 7: Navigation on an image using client side image mapping in
web page using html5
<!DOCTYPE html>
<html>
<head>
</head>
<body>
circulatory system"></img>
<map name="imagemap">
coords="104,130,151,106,198,131,199,178,150,203,105,178" alt="Heart"/>
</map>
</body> </html>
OUTPUT