Q. 1. Create web page using basic HTML tags
First open text document just by right click from mouse. Go to new and from that choose text document.
After that write below HTML code in text document.
<html>
<head>
<title> title want you want in html page </title>
</head>
<body>
write code here
</body>
</html>
after writing above code go in save as and as document with name and in last write .HTML
for example-- "snehal.html"
save document it become web page
Q.2 Create an animated web page by using Marquee Tag
For animated line just add word which you want to animated.
use above code
(A) For scrolling words
<html>
<head>
<title> title want you want in html page </title>
</head>
<body>
<marquee behavior="scroll" direction="left">HTML scrolling text. </marquee>
</body>
</html>
(B) For Bouncing words
As bode as give first question just change bouncing html
<html>
<head>
<title> title want you want in html page </title>
</head>
<body>
<marquee behavior="alternate">Bouncing text...</marquee>
</body>
</html>
Q.3 Create Web page with different images
other code same as Q.1 but change only html which is given in red color.
<html>
<head>
<title> title want you want in html page </title>
</head>
<body>
<img src="//www.html.am/images/image-codes/milford_sound_t.jpg" width="225" height="151" alt="Photo of Milford Sound in New Zealand" />
</body>
</html>
Q.4 Create web page to design time table of your college using Table tag.
YOU CAN WRITE BELOW HTML FOR CREATING TABLE
<table>
<tr>
<th>Table Header</th>
<th>Table Header</th>
<th>Table Header</th>
</tr>
<tr>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
</table>
IF WANT TO PUT LINE BETWEEN TABLE
RED COLOR HTML IS FOR BROADER LINE OF TABLE OTHER HTML SAME AS ABOVE FOR CREATING TABLE.
<html>
<head>
<title>Table Example</title>
<style>
table {
border-collapse: collapse;
}
th, td {
border: 1px solid orange;
}
</style>
</head>
<HTML>
<table>
<tr>
<th>Table Header</th>
<th>Table Header</th>
<th>Table Header</th>
<th>Table Header</th>
</tr>
<tr>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
</table>
0 Comments