Page 90 - Computer - 8
P. 90
<!DOCTYPE html> 2. Open the HTML document in Microsoft
<html> Edge.
<head> <title> Frames in HTML </title> </head>
<style type= “text/css”>
h1 {color: brown; font-family: Calibri; text-align:
center; font-size: 40px; text-transform: uppercase;
font-decoration: underline}
</style>
<body>
<h1> Frames in HTML </h1>
<iframe src=“ComputerSoftware.html” width=500
height=400> </iframe>
<iframe src=“Types of Software.html” width=500
height=400>
</iframe>
</body>
</html>
To display two web pages within a same browser window.
Database Subject Enrichment
The <embed> tag defines a container for an external resource, such as a web page, a picture, a media player,
or a plug-in application, to be inserted on a web page. It takes four attributes:
• src: specifies the path of the resource
• type: specifies the type of resource
• height: height of the resource displayed on the web page
• width: width of the resource displayed on the web page.
Thus, to insert a video titled ‘Animation1.mp4’, we can use the embed tag as follows:
<embed src = “Animation1.mp4” type = “video” height = “400” width = “600”>
Post-Processing
Tables enable the user to arrange large amounts of data systematically in rows and columns.
A hyperlink or link, is a word, phrase, or an image that stores the address of some other web
page or document.
A link on a web page can be an internal link, an external link, or an email link.
The <audio> tag lets you insert an audio file on a web page.
The <video> tag lets you insert a video file on a web page.
Frame is a rectangular area in a web browser that displays an HTML document.
INFO RETENTION
INFO RETENTION
A. Select the correct option for each of the following statements.
1. A link that enables you to send email to a predefined email address using an email program is
______.
(a) Mailto Link (b) Internal Link (c) Program Link (d) External Link
88