Develop and Demonstrate A XHTML Document That Illustrates The Use External Style Sheet, Ordered List, Table, Borders, Padding, Color, and The Tag
Develop and Demonstrate A XHTML Document That Illustrates The Use External Style Sheet, Ordered List, Table, Borders, Padding, Color, and The Tag
Develop and Demonstrate A XHTML Document That Illustrates The Use External Style Sheet, Ordered List, Table, Borders, Padding, Color, and The Tag
use external style sheet, ordered list, table, borders, padding, color,
and the <span> tag.
p,table,li, // mystyle.css
{
font-family: "lucida calligraphy", arial, 'sans serif';
margin-left: 10pt;
}
p { word-spacing: 5px; }
body { background-color:rgb(200,255,205); }
td { padding: 0.5cm; }
th {
text-align:center;
font-size: 85%;
}
table
{
border-style: outset;
background-color: rgb(100,255,105);
}
li {list-style-type: lower-roman;}
span
{
color:blue;
background-color:pink;
font-size: 29pt;
font-style: italic;
font-weight: bold;
}
<script type="text/javascript">
var fib1=0,fib2=1,fib=0;
var num = prompt("Enter a number : \n", "");
for(i=3;i<=num; i++)
{
fib= fib1 + fib2;
document.write("<h1> " + fib + "</h1>");
fib1=fib2;
fib2=fib;
}
}
else
alert("No Proper Input");
</script>
</body>
</html>
<head>
<script type="text/javascript">
function disp(num)
{
var alphaExp = /^[0-9]+$/;
if(!num.value.match(alphaExp))
{
alert("Input should be positive numeric");
return false;
}
var rn=0, n= Number(num.value);
while(n!=0)
{
r = n%10;
n = Math.floor(n/10);
rn = rn*10 + r;
}
alert("The " + num.value + " in reverse is " + rn);
}
</script>
</head>
<body>
Enter a number :
<input type=text name=number>
<input type="button" value="Click me!" onclick="disp(number)" >
</body>
</html>
OUTPUT:
<head>
<script type='text/javascript'> <!-- lab4b.html -->
function formValidator()
{ var usn = document.getElementById('req1');
var sem = document.getElementById('req2');
if(isCorrect(usn))
{ if(isPerfect(sem))
return true;
}
return false;
}
function isPerfect(elem2)
{ var alphaExp2 = /^[1-8]$/
if(elem2.value.length == 0)
{ alert("Semester Number is empty");
elem2.focus();
return false;
}
else if(!elem2.value.match(alphaExp2))
{ alert("Invalid Semester Number");
elem2.focus();
return false;
}
alert("Semester Number IS CORRECT");
return true;
}
function isCorrect(elem1)
{var alphaExp1 = /^[1-4][A-Z][A-Z][0-9][0-9][A-Z][A-Z][0-9][0-9][0-9]$/
if(elem1.value.length == 0)
{ alert("US Number is empty");
elem1.focus();
return false;
}
else if(!elem1.value.match(alphaExp1))
{ alert("US Number should be in DAADDAADDD format");
elem1.focus();
return false; }
alert("US Number IS CORRECT");
return true;
}
</script>
</head>
<body>
<form onsubmit='return formValidator()'>
OUTPUT:
<html>
<head>
<script type="text/javascript">
var top="c1";
function vtop(newTop)
{
domTop=document.getElementById(top).style;
domNew=document.getElementById(newTop).style;
domTop.zIndex=0;
domNew.zIndex=10;
top=newTop;
}
</script>
<style type="text/css">
.pas1
{
position:absolute;
OUTPUT:
<html> <!--5b.html-->
<head>
<script type="text/javascript" src="5b.js">
</script>
<style type="text/css">
.pas1
{
position:absolute;
top:0;
left:0;
z-index:0;
border:3px dotted;
background-color:red;
}
.pas2
{
position:absolute;
top:30px;
left:90px;
z-index:0;
students
{
font-family:arial; <!-- 6a.css -->
color:red;
font-size:16pt;
}
VTU
{
display:block;
<VTU>
<USN> 4CI01CS018 </USN>
<name> KISHOR KUMAR </name>
<college> CIT </college>
<branch> CSE</branch>
<YOJ> 2001 </YOJ>
<email> [email protected] </email>
</VTU>
#!C:/usr/bin/perl.exe
use CGI':standard'; # 7a.pl
print "content-type:text/html","\n\n";
print "<html>\n";
print "<head> <title> About this server </title> </head>\n";
print "<body><h1> About this server </h1>","\n";
print "<hr>";
print "Server name :",$ENV{'SERVER_NAME'},"<br>";
print "Running on port :",$ENV{'SERVER_PORT'},"<br>";
print "Server Software :",$ENV{'SERVER_SOFTWARE'},"<br>";
print "CGI-Revision :",$ENV{'GATEWAY_INTERFACE'},"<br>";
print "<hr>\n";
print "</body></html>\n";
exit(0);
#!/usr/bin/perl
use CGI':standard'; # 7b.pl
print "content type: text/html \n\n";
$c=param('com');
system($c);
exit(0);
#!C:/perl/bin/perl.exe #8a.pl
use CGI ':standard';
if(param)
{
print header();
print start_html(-title=>"UnixCommand",-bgcolor=>"Green",-text=>"blue");
$cmd=param("command");
$m=@l[rand()*10];
print b("$m $cmd"),br();
print start_form();
print submit(-value=>"Back");
print end_form();
print end_html();
}
else
{
print header();
print start_html(-title=>"Enter user name",-bgcolor=>"yellow",-text=>"blue");
print start_form(),textfield(-name=>"command",-value=>" "),
submit(-name=>"submit",-value=>"Submit"),reset();
print end_form();
print end_html();
}
#!C:/perl/bin/perl.exe #8b.pl
use CGI ':standard';
print header();
print start_html(-title=>"WebPage Counter",-bgcolor=>"Pink",
text=>"blue");
open(FILE,'<count.txt');
$count=<FILE>;
close(FILE);
$count++;
open(FILE,'>count.txt');
print FILE "$count";
print b("This page has been viewed $count times");
close(FILE);
print end_html();
#!C:/perl/bin/perl.exe #9.pl
use CGI ':standard';
print "Refresh: 1\n";
print "Content-Type: text/html\n\n";
($s,$m,$h)=localtime(time);
#!/usr/bin/perl # !10.pl
print "content-type: text/html \n\n";
print "<HTML><TITLE>Result of the insert operation </TITLE>";
use CGI':standard';
use DBI;
$dbh=DBI->connect("DBI:mysql:kishor","root");
$name=param("name");
$age=param("age");
$qh=$dbh->prepare("insert into student values('$name','$age')");
$qh->execute();
$qh=$dbh->prepare("Select * from student");
$qh->execute();
print "<table border size=1><tr><th>Name</th><th>Age</th></tr>";
while ( ($name,$age)=$qh->fetchrow())
{
print "<tr><td>$name</td><td>$age</td></tr>";
}
print "</table>";
$qh->finish();
$dbh->disconnect();
print"</HTML>";
<html> <--10.html-->
<body>
<form action="http://localhost/cgi-bin/10.pl">
Name : <input type="text" name="name"> <br>
Age :<input type="text" name="age"> <br>
<input type="submit" value="Submit">
</form>
</body>
</html>
<?php
date_default_timezone_set('Asia/Calcutta');
$inTwoMonths = 60 * 60 * 24 * 60 + time();
if(isset($_COOKIE['lastVisit']))
{
$visit = $_COOKIE['lastVisit'];
echo "Your last visit was - ". $visit;
}
else
echo "You've got some stale cookies!";
?>
<?php
session_start();
session_register("count");
if (!isset($_SESSION))
{
$_SESSION["count"] = 0;
echo "<p>Counter initialized</p>\n";
}
else { $_SESSION["count"]++; }
13a. Create a XHTML form with Name, Address Line 1, Address Line
2, and E-mail text fields. On submitting, store the values in MySQL
table.
<html>
<body bgcolor="aaffff"> <!-- 13a.html-->
<h3>form information</h3>
<form action = "13a.php" method = "post">
<table border = "0">
<tr>
<td> enter name:</td>
<td> <input type = "text" name = "name"></td>
</tr>
<tr>
<td> enter Address1:</td>
<td><input type = "text" name = "add1"></td>
</tr>
<tr>
<html>
<head><title> php and mysql</title></head>
<body bgcolor="pink">
<table border="2">
<tr>
<th>name</th>
<th>address1</th>
<th>address2</th>
<th>email</th>
</tr>
<? while($array= mysql_fetch_row($result)):?>
<tr>
<td><? echo $array[0];?></td>
<td><? echo $array[1];?></td>
<td><? echo $array[2];?></td>
<td><? echo $array[3];?></td>
</tr>
<? endwhile;?>
OUTPUT:
<html> <!—13b.html-->
<body bgcolor="aaffff">
<h3>search page</h3>
<form action = "13b.php" method = "post">
enter the Name to be searched:
<input type = "text" name = "search">
<br/>
<input type = "submit" value = "submit">
<input type = "reset" value = "reset">
<br/>
</form>
</body>
</html>
<?php
$search = $_POST["search"];
$mysql = mysql_connect("localhost","root", "fedora8") or die("can't connect");
mysql_select_db("kishor") or die("can't select the database");
$result = mysql_query("select * from contact where name like '%$search%'") or
die("can't execute");
?>
<html> <!—13b.php-->
<body bgcolor="pink">
<? if(mysql_num_rows($result) >0) : ?>
<table border="1">
<tr>
<th>name</th>
<th>address1</th>
<th>address2</th>
<th>email</th>
</tr>
<b>Search Result:</b>
<? while( $array = mysql_fetch_row($result)):?>
<tr>
<td><? echo $array[0]?></td>
<td><? echo $array[1]?></td>
<td><? echo $array[2]?></td>
<td><? echo $array[3]?></td>
</tr>
OUTPUT:
<!--14a.html-- >
<html>
<body bgcolor="aabbcc">
<h3>form to accept the book-information</h3>
<form action = "14a.php" method = "post">
<table border = "0">
<tr>
<td> enter A.number:</td>
<td> <input type = "text" name = "anumber"></td>
</tr>
<tr>
<td> enter title:</td>
<td><input type = "text" name = "title"></td>
</tr>
<tr>
<td>enter author</td>
<td><input type = "text" name = "author"></td>
</tr>
<tr>
<td> enter edition</td>
<td> <input type = "text" name = "edition"></td>
</tr>
<tr>
<td> enter publication</td>
<td><input type = "text" name = "publisher"></td>
</tr>
<tr>
<td> <input type = "submit" value = "submit"></td>
<td><input type = "reset" value = "reset"></td>
</tr>
</table>
</form>
</body>
</html>
<html>
<head><title> php and mysql</title></head>
<body bgcolor="pink">
<table border="2">
<tr>
<th>anumber</th>
<th>title</th>
<th>author</th>
<th>edition</th>
<th>publication</th>
</tr>
<? while($array= mysql_fetch_row($result)):?>
<tr>
<td><? echo $array[0];?></td>
<td><? echo $array[1];?></td>
<td><? echo $array[2];?></td>
<td><? echo $array[3];?></td>
<td><? echo $array[4];?></td>
</tr>
<? endwhile;?>
<?mysql_free_result($result);?>
<?mysql_close($mysql);?>
</table>
</body>
</html>
<html>
<body bgcolor="blue">
<? if(mysql_num_rows($result) >0) : ?>
<table border="1">
<tr>
<th> isbn</th>
<th>title</th>
<th>author</th>
<th>edition</th>
<th>publication</th>
</tr>
<b>Search Result:</b>
<? while( $array = mysql_fetch_row($result)):?>
<tr>
<td><? echo $array[0]?></td>
<td><? echo $array[1]?></td>
<td><? echo $array[2]?></td>
<td><? echo $array[3]?></td>
<td><? echo $array[4]?></td>
</tr>
<? endwhile;?>
<?else:?>
<?echo " Record not found";?>
<?endif ;?>
</table>
</body>
</html>
OUTPUT: