Comp Journal 1
Comp Journal 1
<!doctype HTML>
<html>
<head>
<title>College Profile
</title>
<style>
body{background-color:pink}
h1{border-style:dotted;border-color:red}
p{margin-left:50px;font-size:20px}
b{color:red}
i{color:blue}
u{color:green}
</style>
</head>
<body>
<h1 align="center">IDUBS JR College of commerce and science</h1>
<p>
<b>The I.D.U.B.S. junior College was started in 1975. </b>
<br><br>
<i>It can be proudly as curtained that ours was the First Institution to manage
Higher Secondary School in Bhandup. </i>
<br><br>
<u> The college is attached to the Hindi medium School and recognized and aided by the
Government of Maharashtra.</u>
</p>
<br>
<nav>
<a href="page2.html">FEEDBACK FORM</a>
</nav>
</body>
</html>
page2.html
<!DOCTYPE html>
<html>
<head>
<title>feedback form</title>
<style>
body{background-color:yellow}
h1{border-style:dashed;border-color:red}
</style>
</head>
<body>
<h1 align="center">FEEDBACK FORM</h1>
<form name="f1">
Enter your name:<input type="text" name="t1" required>
<br><br>
Enter your email address:<input type="email" name="e1">
<br><br>
enter your feedback:<textarea rows="5" cols="10"></textarea>
<br><br>
<input type="submit" name="b1" value="submit">
</form>
<nav>
<a href="index.html">GO TO HOME PAGE</a>
</nav>
</body>
</html>
PRACTICAL NO : 2
AIM : CREATION OF WEBSITE USING HTML AND CSS CODE TO DESIGN A WEBPAGE
page1.html
<!DOCTYPE html>
<html>
<head>
<title> Tourist places</title>
<style>
aside{background-color:yellow;float:left;width:50%;height:50%}
section{background-color:pink;float:right;width:50%;height:50%}
ol{font-style:italic;font-size:20px}
ul{font-weight:bold;font-size:20px}
</style>
</head>
<body>
<header style="background-color:skyblue;height:100px">
<h1 align="center">Tourist places</h1>
</header>
<aside>
<h3>City</h3>
<ol>
<li>Pune</li>
<li>Banglore</li>
<li>Hydrabad</li>
<li>Delhi</li>
</ol>
</aside>
<section>
<h3>Tourist Places in Pune</h3>
<ul>
<li>Shanirvarwada</li>
<li>Kelkar Museum</li>
<li>Singhgad fort</li>
</ul>
</section>
</body>
</html>
PRACTICAL NO : 3
AIM : CREATE A WEBSITE USING HTML AND CSS CODE TO DESIGN WEBPAGES
page1.html
<!DOCTYPE html>
<html>
<head>
<title>first page</title>
</head>
<body>
<h1 align="center">Traveller Information</h1>
</body>
</html>
page2.html
<!DOCTYPE html>
<html>
<head>
<title>information about transpoter</title>
</head>
<body>
<h1 align="center">Transporter Information</h1>
<ul>
<li>Name of the transpoter :Air Asia</li>
<li>Time :10.00 am</li>
<li>Seat No : B39</li>
<li>Destination : Delhi</li>
</ul>
<!DOCTYPE html>
<html>
<head>
<title>Single Audio with controls </title>
</head>
<body>
<h1 align="center">Audio file(single source) with controls</h1>
</body>
</html>
Audio1.html
<!DOCTYPE html>
<html>
<head>
<title>Multiple Audio with controls</title>
</head>
<body>
</body>
</html>
PRACTICAL NO : 5
AIM : USE OF VIDEO ON WEBPAGES USING HTML5
video.html
<!DOCTYPE html>
<html>
<head>
<title>Single Audio with controls </title>
</head>
<body>
<h1 align="center">Video file(single source) with controls</h1>
</body>
</html>
Video1.html
<!DOCTYPE html>
<html>
<head>
<title>Multiple Video with controls</title>
</head>
<body>
</body>
</html>
PRACTICAL NO : 6
AIM : NAVIGATION ON AN IMAGE USING CLIENT SIDE IMAGE MAPPING IN WEB PAGE
USING HTML 5
imagemap.html
<!DOCTYPE html>
<html>
<head>
<title>Client side Image Mapping</title>
</head>
<body>
<map name="imagemap">
<area shape="rect" coords="18,19,183,129" href="http://www.google.com" alt="google">
<area shape="circle" coords="298,217,80" href="http://www.yahoo.com" alt="yahoo">
<area shape="poly" coords="142,318,52,408,150,504,239,407" href="a.html" alt="This is local page">
</map>
</body>
</html>
a.html
<html>
<head>
<title>image mapping</title>
</head>
<body>
<h1> This is local page</h1>
</body>
</html>
OUTPUT
Practical no : 1
Practical no : 2
Practical No : 3
Practical No : 4
Practical No : 5
Practical No : 6