You are on page 1of 2

Date: 02/06/2017

Lab-05

Lab-05
HTML CODE:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style5.css">
<title>IWP- Lab "05"</title>

<!--Define a description of your web page-->


<meta name="description" content="IWP Lab 05">
<!--Define keywords for search engines-->
<meta name="keyword" content="iframe, head, viewport, multimedia">
<!--Define the author of a page-->
<meta name="author" content="Rohit Tayal">
<!--Refresh document every 5 seconds-->
<meta http-equiv="refresh" content="5">
<!--Setting the viewport-->
<meta name="viewport" content="width:device-width, initial-scale=1.0">
</head>
<body>
<h1 align="center">Lab - Iframes, metadata and HTML Symbols</h1>
<iframe src="Lab1.html" height="200" width="300"></iframe>
<iframe src="Lab2.html" height="200" width="300"></iframe>
<iframe src="Lab3.html" height="200" width="300"></iframe>
<iframe src="Lab4.html" height="200" width="300"></iframe>

<ul>
<li >Rupee symbol: &#x20B9</li>
<li>Mathematical: &#8704</li>
<li>Special symbol: 4 &lt 5</li>
<li>Greek Letter: &Delta;</li>
</ul>

<p align="center">Reference: http://www.w3schools.com/html/html_symbols.asp</p>


</body>
</html>

CSS CODE:

iframe{
border:none;
float:middle;
}
Date: 02/06/2017
Lab-05

Output:

You might also like