Page 62 - TP_Prime_V2.2_Class8
P. 62
05
MORE ON
HTML
Prime (Ver. 2.2)-VIII Learning Objectives
• Inserting Images
• Linking Web Pages
• Adding Audio & Video
• Frames
• Forms in HTML5
60
Hi! You know, today, I learned some amazing HTML concepts, like, how to
insert images, add links, play audio and video, use frames, and create forms!
HTML is so much more than just text!
Wow, that sounds incredible! So, now you can make webpages with pictures,
links, and even videos? I’d love to know how to do all of that!
We generally have lots of images as a part of web page. We also notice that all the web
pages are interlinked with each other. Sometimes, we see that a web page is divided into
various sections. HTML allows us to implement all these functionalities in our web pages.
In this chapter, we will learn about inserting images, linking web pages, adding audio and
video, and creating frames.
Inserting Images
Images and other graphical elements, such as drawings, paintings, and charts, enhance the
look and feel of a web page. All of these graphical elements are considered images on a
web page.
HTML also allows us to insert images inside the web pages through the <IMG> tag.
The <IMG> tag is an empty tag and has various attributes.
The attributes of the <IMG> tag are:
• Src: It specifies the source location or URL of the image to be inserted in the web page.
For example,
<IMG SRC="C:/Mydocuments/lily.jpg">

