ALL SOP IT
ALL SOP IT
ALL SOP IT
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
ol
font-size: 20px;
margin-left: 240px;
background-color: #f7f5d2;
width:190px;
ul
font-size: 20px;
max-width: 190px;
background-color: pink;
margin-left: 480px;
display: block;
</style>
</head>
<body>
Tourist Places
</h1>
<ol>
<b>City</b>
<li>Pune</li>
<li>Bangalore</li>
<li>Hyderabad</li>
<li>Delhi</li>
</ol>
<ul>
<li> Shanivarwada</li>
<li>Sinhgad Fort</li>
</ul>
</body>
<html>
Sop 1 HTML :
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
h1
text-align: center;
div
margin-left: 500px;
margin-top: 120px;
</style>
<title>
</title>
</head>
<body>
<div>
<label for="name">Name:</label>
<br>
<br>
</div>
</body>
</html>
SOP 1.2 :
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
text-decoration : underline;
font-style: bold;
color:green;
font-size: 24px;
margin-left: 130px;
max-width: 1100px;
h1
text-align: center;
</style>
<title>
</title>
</head>
<body>
<h1>
</h1>
</nav>
<br>
<br>
<p>
Education is the most powerful weapon which you can use to change the world. Everyone is
looking to change the world, and why not take part in these movements<sup>?</sup> People are
paying a ridiculous amount of money for education, as this industry is valued around million dollars.
Most of this amount is now spent on online education. Of course, our organization would like to give
you an opportunity to take a fraction of this platform. The best way to gain quality education is to
join with us where you can find majority of academic fields to enhance your career with.Many
streams of subjects are available at our place.
</p>
<br>
</body>
</html>
Sop-3 HTML :
<!DOCTYPE html>
<html>
<head>
<title>SOP3 Demostration</title>
</head>
<body bgcolor="lightyellow">
<table>
<tr>
<td>
<label for="name">
Traveller Name:
</label>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>
<label for="phone_no">
Telephone No:
</label>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div>
<ul>
<li>
</li>
<li>
Time - 09:30 AM
</li>
<li>
Seat No - B39
</li>
<li>
Destination - Delhi
</li>
</ul>
</div>
</body>
</html>
SOP 4 HTML :
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body
background-color: lightgrey;
nav
background-color: blue;
height:30px;
line-height: 30px;
font-size: 18px;
font-family: sans-serif;
span
font-size: 20px;
color:#FFFFFF;
padding: 15px;
section
float: left;
width: 70%;
background-color: grey;
margin: 5px 0;
article
background-color: white;
margin: 0 5px;
footer
background-color: blue;
line-height: 20px;
height:20px;
margin: 5px 0;
color: white;
padding:12px;
font-size: 20px;
font-family: sans-serif;
clear:both;
aside
float: right;
width: 29%;
margin: 5px 0;
background-color: grey;
h2,h3,h1,p
margin : 5px 0;
padding :0 10px;
</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>
<br>
This is the detail of rescue man. This is the story of how is rescued.
</p>
</article>
<article>
<h3>
New Library to be built this is local news 2
</h3>
<p>(reporter name,date)</p>
<br>
</article>
</section>
<section>
<h2>
National News
</h2>
<article>
<h3>
<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>
<br>
<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>
Sop 1 javascript :
<!DOCTYPE html>
<html>
<head>
<title>Sop 2 JavaScript</title>
</head>
<body>
<h1>Information Form</h1>
<form name="f1">
Your Name
<br>
<br>
Address
<br>
<br>
Contact
<br><br>
<br>
<br>
</form>
</body>
<script type="text/javascript">
function validate_email()
var x=f1.txt_email.value;
var at_pos=x.indexOf("@");
var last_pos=x.lastIndexOf("@");
var firstdot_pos=x.indexOf(".");
var dot_pos=x.lastIndexOf(".");
if (at_pos<1||dot_pos<at_pos+2||dot_pos+2>=x.length||firstdot_pos<at_pos||
at_pos<last_pos)
f1.txt_email.focus();
else
return true;
</script>
<br>
<br>
<footer>
This website is made by vivek wagadare under the guidance of the <b>jyotsna mam </b>(IT &
Computer Science Teacher ARIHANT COLLEGE,camp)
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<form name="form1">
</form>
<script type="text/javascript">
function count()
var i,ch,str,counter=0;
str=form1.text1.value;
for(i=0;i<str.length;i++)
ch=str.charAt(i);
if(ch=='A'||ch=='a'||ch=='e'||ch=='E'||ch=='i'||ch=='I'||ch=='o'||ch=='O'||ch=='u'||ch=='U')
counter++;
</script>
</body>
<br><br>
<footer>
This website is made by vivek wagadare under the guidance of the <b>jyotsna mam </b>(IT &
Computer Science Teacher ARIHANT COLLEGE,camp)
</div>
</footer>
</html>
Sop 3 javascript
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<form name="f1">
<br>
<br>
<br>
</form>
<script type="text/javascript">
function chk_palindrome()
var str,str_case,i,len;
str=f1.t1.value;
str_case=str.toLowerCase();
len=str_case.length;
var p=1;
for(i=0;i<len/2;i++)
if(str_case.charAt(i)!=str_case.charAt(len-1-i))
p=0;
break;
if(p==1)
else
}
</script>
</body>
<footer>
This website is made by vivek wagadare under the guidance of the <b>jyotsna mam </b>(IT &
Computer Science Teacher ARIHANT COLLEGE,camp)
</div>
</footer>
</html>
Sop 4 javascript :
<!DOCTYPE html>
<html>
<head>
<title>SOP 4 Javascript</title>
<body>
<br>
<br>
<script>
function convert(temperature) {
var t;
t = document.getElementById("txt_celsius").value * 9 / 5 + 32;
document.getElementById("txt_fah").value = Math.round(t);
t = (document.getElementById("txt_fah").value -32) * 5 / 9;
document.getElementById("txt_celsius").value = Math.round(t);
</script>
<br><br>
<footer>
This website is made by vivek wagadare under the guidance of the <b>jyotsna mam </b>(IT &
Computer Science Teacher ARIHANT COLLEGE,camp)
</div>
</footer>
</html>
SOP 1 PHP :
</html><?php
if(isset($_POST['submit']))
$age=$_POST['txt_age'];
if($age>=18)
else
?>
save as index.html
<html>
<body>
</form>
</body> <br>
<br>
<footer>
This website is made by vivek wagadare under the guidance of the <b>jyotsna mam
</b>(IT & Computer Science Teacher ARIHANT COLLEGE,camp)
</div>
</footer>
</html>
Sop 2 php :
Save as vowel_cnt.php
<?php
if(isset($_POST['submit']))
$str strtolower($_POST['txt_string']);
$len-strlen($str);
$num=0;
for ($i=0;$i<$len;$i++)
if(in_array($str[$i], $vowel))
$num++;
Save as vowelchk.html
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<br>
</form>
</body><br><br>
<footer>
This website is made by vivek wagadare under the guidance of the <b>jyotsna mam
</b>(IT & Computer Science Teacher ARIHANT COLLEGE,camp)
</div>
</footer>
</html>
Sop 3 php :
<?php
echo "<br>";
$data = array(1,2,3,4,5);
unset($data[1]);
?>