0% found this document useful (0 votes)
14 views5 pages

Assignment 2

Web technology assignment 2

Uploaded by

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

Assignment 2

Web technology assignment 2

Uploaded by

Yashodeep Badge
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
You are on page 1/ 5

Assignment No- 02

Name- Yashodeep Badge.


Roll No- 353
Class- TE-Computer

Title: implement a webpage index.for any client website (e.g a restaurant


website project) using following:
a) HTML syntax: heading tags, basic tags and attribute, frames, tables, lists,
links for text and images, forms etc.
b) Use of External CSS, inline CSS, Internal CSS

<html>
<head>
<title>frame tag</title>
</head>
<frameset rows="20%,80%">
<frame src="demo.html">
<frameset cols="35%,30%,35%">
<frame src="f1.html">
<frame src="list.html">
<frame src="table.html">
</frameset>
</frameset>
</html>
<html>
<head>
<title>demo</title>
</head>
<body style="background-color: yellow;">
<marquee><h1><b>Fast Food Menu<b><h1></marquee>
</body>
</html>
<html>
<head>
<title>images</title>
</head>
<body>
<img src="C:\Users\CAPRICON\Pictures\fast.jpg" width=450 height=490>
</img>
</body>
</html>
<html>
<head>
<title>list</title>
</head>
<body style="background-color: pink;">
<list>
<tr>
<th><h2><center>Burgers</center></h2></th>
<font size=4>
<ul>
<li>veg burger </li>
<li>chesse burger </li>
<li>veg chesse grilled burger </li>
<li>paneer burger</li>
<li>chicken burger</li>
</ul>

<th><h2><center>Momos</center></h2></th>
<ul>
<li>Fried Momos</li>
<li>steam Momos</li>
<li>Tandoori Momos</li>
<li>Chiken Momos</li>
</ul>

<th><h2><center>pizzas</center></h2></th>

<ul>
<li>4 topping pizza </li>
<li>chesse garlic pizza</li>
<li>chesse burst pizza</li>
<li>garden fresh pizza</li>
<li>paneer tikka pizza</li>
</ul>
</body>
</html>
<html>
<head>
<title>table</title>
</head>
<body style="background-color: white;">
<h2><center>Live, Love, Eat!!!!!</center></h2>
<table border="1">
<tr>
<td>
<img src="C:\Users\CAPRICON\Pictures\burger.jpg" width="210"
height="200"></img>
<img src="C:\Users\CAPRICON\Pictures\mpb.jpg" width="210"
height="200"></img>
</td>
</tr>
<tr>
<td>
<img src="C:\Users\CAPRICON\Pictures\momos.jpg" width="210"
height="200"></img>
<img src="C:\Users\CAPRICON\Pictures\pizza.jpg" width="210"
height="200"></img>
</td>
</tr>
</table>
</body>
</html>
Output:

You might also like