0% found this document useful (0 votes)
22 views10 pages

Create Website with HTML5 and CSS3

The document outlines various Standard Operating Procedures (SOPs) for creating websites using HTML5 and CSS3, including the creation of basic web pages, forms, framesets, and the integration of audio and video elements. It also covers navigation techniques using client-side image mapping. Each SOP is accompanied by relevant HTML code examples demonstrating the concepts discussed.

Uploaded by

avhadk46
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views10 pages

Create Website with HTML5 and CSS3

The document outlines various Standard Operating Procedures (SOPs) for creating websites using HTML5 and CSS3, including the creation of basic web pages, forms, framesets, and the integration of audio and video elements. It also covers navigation techniques using client-side image mapping. Each SOP is accompanied by relevant HTML code examples demonstrating the concepts discussed.

Uploaded by

avhadk46
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

SOP 1Creation of website using HTML5 and CSS3.

<html>
<head>
<title>Create Website</title>
<style> h1
{background-color: aqua;}
b
{color: red;}
u{font-size: 20;}
i{text-decoration: overline;}
</style>
</head>
<body>
<h1 align="center">GLOBAL COLLEGE</h1>
<p>
<b>Global Public School And Junior College</b><br><br><br>
<u>It is One of the best Organization in Excellence in Education</u><br><br><br>
<i>Institute conducted various course</i>
</p>
<br> <br><br>
<img src="[Link]" height="500" width="400" alt="college">
<br><br><br>
<a href="[Link]">Click here for next page</a>
</body>
</html>

Code for [Link]


<!DOCTYPE html>
<html>
<head>
<title>Registration form</title>
</head>
<body>
First Name:<input type="text" name="fname"><br><br>
Last Name:<input type="text" name="lname"><br><br>
Email:<input type="email" name="email"><br><br>
Gender:<input type="radio" name="r1">Male<br><br>
<input type="radio" name="r1">Female<br><br> Qualification:
<select>
<option>SSC</option>
<option>HSC</option>
<option>Graduation</option>
<option>Post Graduation</option>
</select><br><br>

<input type="submit" value="submit"><br><br></body></html>


SOP2 Create a website using HTML5 and CSS as the layout display.
Code for [Link] (page1)
<html>
<head>
<title>Framesaet</title>
</head>
<body>
<frameset rows=30%,70%>
<frame src=[Link]>
<frameset cols=50%,50%>
<frame src=[Link]>
<frame src=[Link]>
</frameset>
</frameset>
</body>
</html>
Code for [Link](page2)
<html>
<head>
<title>top</title>
</head>
<body style="background-color: skyblue">
<center>
<h1 style="color: pink">Tourist Places</h1>
</center>
</body>
</html>
Code for [Link](page3)
<html>
<head>
<title>left</title>
<style> body
{
background-color: lightyellow;
}
h4
{
font-style: normal;
}
</style>
</head>
<body>
<h4>City</h4>
<ol type="1">
<li>Pune</li>
<li>Banglore</li>
<li>Hydrabad</li>
<li>Delhi</li></ol></body></html>
Code for [Link](page4)
<html>
<head>
<title>right</title>
<style> body
{
background-color: pink;
}
h3
{
font-style: normal;
}
</style>
</head>
<body>
<h3>Tourist Places in Pune
<ul type="disc">
<li>Shaniwada</li>
<li>Kelkar Museum</li>
<li>Sinhgad Fort</li>
</ul>
</h3>
</body>
</html>
SOP5:Use of Audio on web pages using HTML5
Code for [Link]
<html>
<head>
<title>Audio ex</title>
</head>
<body>
<h1>Audio Example With Single Source File</h1>
<audio controls height="500" width="500" autoplay>
<source src="audio.mp3" type=" audio.mp3">
</audio>
</body>
</html>
Code for [Link]
<html>
<head>
<title>Audio ex</title>
</head>
<body>
<h1>Audio Example With Multiple Source File</h1>
<audio controls height="500" width="500" autoplay>
<source src="[Link]" type="audio/ ogg ">
<source src=" audio.mp3" type=" audio /mp3">
</audio>
</body>
</html>
SOP6:Use of Video on Web pages using HTML5 Code for [Link]
<html>
<head>
<title>video ex</title>
</head>
<body>
<h1>Video Example With Single Source File</h1>
<video controls height="500" width="500" autoplay>
<source src="movie.mp4" type="video/mp4">
</video>
</body>
</html>
Code for [Link]
<html>
<head>
<title>video ex</title>
</head>
<body>
<h1>Video Example With Multiple Source File</h1>
<video controls height="500" width="500" autoplay>
<source src="[Link]" type="video/ ogg ">
<source src="[Link]" type="video/ webm ">
<source src="movie.mp4" type="video/mp4">
</video>
</body>
</html>
SOP7:Navigation on an image using client side iamge mapping in web page using html5
Code for [Link]
<html>
<head>
<title>Image Map</title>
</head>
<body>
<center>
<h1>Client side Image Mapping</h1>
<img src="[Link]" height="500" width="500" usemap="#abc">
<map name="abc">
<area shape="rect coords=416,195,625,304" href="[Link]
<area shape="poly coords=473,391,427,480,558,481 "href="[Link]
</map>
</center>
</body>
</html>

You might also like