Sie sind auf Seite 1von 6

1)Make a Webpage to show use of font tag with attribute color,size,Face and addi

ng color of Html Page?


<html>
<head>
<title>Font</title>
</head>
<body bgcolor="red">
<font face="Monotype Corsiva" size="6"color="yellow">united State Of America</fo
nt>
<font face="Algerian" size="3"color="blue">united Kingdom of London</font>
</body>
</html>
********************************************************************************
*************************
2)Make a Web Page in which show week day name with bulleted(unordered List) and
show month Name with squre type Shape?
<html>
<head>
<title></title>
</head>
<body>
<h3><u>Week Name is:</u></h3>
<ul >
<li>Sunday</li>
<li>Monday</li>
<li>Tuesday</li>
<li>Wednesday</li>
<li>Thursday</li>
<li>Friday</li>
<li>Saturday</li>
</ul>
<h3><u>Month Name is:</u></h3>
<ul type="square">
<li>January</li>
<li>February</li>
<li>March</li>
<li>April</li>
<li>May</li>
<li>June</li>
<li>July</li>
<li>August</li>
<li>September</li>
<li>October</li>
<li>November</li>
<li>December</li>
</ul>
</body>
</html>
********************************************************************************
************************************************
3)Make a Webpage in which we use ordered list for showing your computer Paper wi
th lower Roman and Latest browser List?
<html>
<head>
<title>order list</title>
</head>

<body>
<h2><u>List of Computer paper</u></h2>
<ol type="i">
<li>Computer Graphics and Image Procesing</li>
<li>Software Engineering</li>
<li>Simulation and Modelling</li>
<li>Advanced Computer Architecture</li>
<li>Management Information Systems</li>
<li>Network Security and Cryptology</li>
<li>E-Banking and Security Transactions</li>
<li>Internet Application Development</li>
<li>E-Commerce</li>
</ol>
<h2><u>List of Browsers:</u></h2>
<ol type="1">
<li>Windows Internet Explorer</li>
<li>Netscape navigator</li>
<li>Google Chrome</li>
<li>Mozilla Firefox</li>
<li>Opera</li>
<li>Safari</li>
<li>UC Browser</li>
</ol>
</body>
</html>
********************************************************************************
***********************
4)Make a Html Page in which use the image hyperlink to move different location w
hen user click on Image?
<html>
<head>
<title></title>
</head>
<body>
<map name="m1">
<area shape="rect" coords="0,0,50,50" href="Q1.htm" alt="rect">
<area shape="circle" coords="50,25,25" href="Q2.html" alt="circle">
<area shape="poly" coords="0,75,25,100,100,100,125,75,120,50,25,50" href="Q3.htm
l" alt="poly">
</map>
<img src="file:///C:/Users/Public/Pictures/Sample%20Pictures/Jellyfish.jpg" heig
ht="100%" width="100%" usemap="#m1">
</body>
</html>
********************************************************************************
**********************************
5)Make HTML page in which use Linking to document top hyperlink?
<html>
<head>
<title></title>
</head>
<body>
Go to<a name="bottom" href="#top"> Bottom</a><br>
<img src="file:///C:/Users/Public/Pictures/Sample%20Pictures/Tulips.jpg"><br>
Go to<a name="top" href="#bottom">top</a>
</body>
</html>
********************************************************************************

****************************************
6)Make HTML in which create table structure for univercity time table that showi
ng Date,day,Subject paper Name,time Etc?
<html>
<head>
<title></title>
</head>
<body>
<center><h3>University of Rajasthan<br>Programme of Examination<br>B.C.A. Part I
II Examination,2012</h3></center>
<table border="3">
<tr>
<th rows span="2">Day & Date</th>
<th rows span="2">Time<br>(Noon-Session)</th>
<th cols span="3">Paper No.</th>
<th cols span="3">Subject/Papers</th><br>
</tr>
<tr>
<td>Thursday, May 10,2012</td>
<td>11:00 a.m. To 02:00 p.m.</td>
<td>311</td>
<td>Computer Graphics and Image Processing<br></td>
</tr>
<tr>
<td>Monday, May 14,2012</td>
<td>11:00 a.m. To 02:00 p.m.</td>
<td>312</td>
<td>Software Engineering</td>
</tr>
<tr>
<td>Saturday, May 19,2012</td>
<td>11:00 a.m. To 02:00 p.m.</td>
<td>313</td>
<td>Simulation and Modelling</td>
</tr>
<tr>
<td>Wednesday, May 23,2012</td>
<td>11:00 a.m. To 02:00 p.m.</td>
<td>314</td>
<td>Advanced Computer Architecture</td>
</tr>
<tr>
<td>Monday, May 28,2012</td>
<td>11:00 a.m. To 02:00 p.m.</td>
<td>315</td>
<td>Management Information Systems</td>
</tr>
<tr>
<td>Thursday, May 31,2012</td>
<td>11:00 a.m. To 02:00 p.m.</td>
<td>316</td>
<td>Network Security and cryptology</td>
</tr>
<tr>
<td>Monday, June 4,2012</td>
<td>11:00 a.m. To 02:00 p.m.</td>
<td>317</td>
<td>E-Banking and Security Transactions</td>
</tr>
<tr>

<td>Thursday, June 7,2012</td>


<td>11:00 a.m. To 02:00 p.m.</td>
<td>318</td>
<td>Internet Application Dovelopment</td>
</tr>
<tr>
<td>Monday, June 11,2012</td>
<td>11:00 a.m. To 02:00 p.m.</td>
<td>319</td>
<td>E-Commerce</td>
</tr>
</table>
</body>
</html>
********************************************************************************
***********************************
7)Make html page Recevied information from user?
1)User First Name(text)
2)User Last Name(text)
3)Sex Male/female(Radio)
4)Address(textarea)
5)Email:(text)
6)Hobbies(checkbox)
7)submit Button
8)Reset Button
<html>
<head>
<title></title>
</head>
<body>
<h2><center><font size="5" color="green">Entry Form</center></font>
<hr>
<pre>
<form name="form1" method="post" action="p1.html">
User First Name:
<input type="text" name="t1"><br>
User Last Name: <input type="text" name="t2"><br>
Sex:
Male<input type="radio" name="r1">
Female<input type
="radio" name="r1"><br>
Address
<textarea rows="3" cols="20" >Enter address </textarea><br
>
E-mail Address
<input type="text" name="t3"><br>
Hobbies:
<input type="checkbox" name="cb1">Reading<br>
<input type="checkbox" name="cb2">Playing Games<br>
<input type="checkbox" name="cb3">Travelling<br>
<input type="checkbox" name="cb4">Listen Music<br>
<input type="checkbox" name="cb5">Other<br>
<input type="submit" name="s1" value="Submit">
<inpu
t type="reset" name="r1" value="Reset">
</form>
</pre>
</body>
</html>
********************************************************************************
*************************
8)Make a Webpage with two Frame. left Frame have more Links and Right Frame Have
Image?
<html>
<head>

<titlt></title>
</head>
<frameset Cols="50%,*">
<frame src="Q8a.html">
<frame src="C:\Users\Public\Pictures\Sample Pictures\Desert.jpg">
</frameset>
</html>
<html>
<head>
</head>
<body>
1.<a href="Q7.html">Entry Form</a><br>
2.<a href ="Q2.html">Week and Month Name</a>
</body>
</html>
********************************************************************************
********************************************
9)Make a Web Page and navigate to first page to second Page and Vice-Versa?
<html>
<head>
</head>
<body>
<font color="red" face="monotype corsiva" size="7" ><center> About Camponies</ce
nter><hr width="250" height="1"color="green">
</font>
<pre>
<font color="aqua" face="monotype corsiva" size="5" >
Here you can read and know about World's leading companies. Some are :<br>
1. Google<br>
2. Microsoft
</font>
<h4 align="right"> <a href=" pr1.html">Next>></a></h4>
</pre>
</body>
</html>
<html>
<head>
<title>dell</title>
</head>
<body>
<h2>Dell Computer Corporation:</hr><br>
<p> <font size="3">
Google Inc. is an American multinational corporation that provides Internet-rela
ted products and services, including internet search, cloud computing, software
and advertising technologies.
The company was founded by Larry Page and Sergey Brin while both attended Stanfo
rd University. </font></p>
<h4 align="left"><a href="Q9.html"> back</a></h4>
<h4 align="right"><a href="www.google.com">Next>></a></h4>
</body>
</html>
********************************************************************************
******************************************
10)Insert an Inline Frame Between the two Paragraph.the content of the Frame sho
uld be an Image?
<html>

<head>
</head>
<body>
Barack Obama is first african-american president of America<br>
<iframe src="file:///C:/Users/TELLITDELL/Downloads/2012-european-and-american-bo
ys-popular-hairstyle-long-hair-300x300.jpg">
</iframe><br>
Barack Obama is Re-elected in 2012.
</body>
</html>
********************************************************************************
******************************************
JavaScript File coming Soon?
author:Girraj

Das könnte Ihnen auch gefallen