HTML_Images
HTML_Images
LEARNING OBJECTIVE
• To revisit and use the Tags learnt so far.
• To know how to add images to the webpage.
HTML • To make a Tribute page for someone you admire in
Images your life.
STARTER: (5-7mins)
Revision
<body bgcolor="#8000ff">
</body>
Adding an image
<html>
<head>
<title> Castle Rock High School </title>
</head>
<body bgcolor="#8000ff">
<font color="#00ff80"><h1 align="center"> Castle Rock High School</h1>
<h2> Be The Best You Can Be </h2></font>
<img src="http://velfac.co.uk/globalassets/billeder/case-billeder/castle-rock-school-
1.jpg" height="200" width="500">
</body>
</html>
Aligning an image
<center><img
src="http://velfac.co.uk/globalassets/billeder/case-billeder/castle-rock-
school-1.jpg" height="200" width="500"></center>
Revision
Activity: The simplest website you can make as a beginner is a tribute page of someone
you admire in your life. It requires only basic knowledge of HTML.
Group 1 Group 2 Group 3
Make a Tribute webpage for Make a Tribute webpage for Make a Tribute webpage for
‘Steve Jobs’. ‘Albert Einstein’ ‘Bill Gates’.
Make a webpage writing about that person adding his/her image. At the top of the webpage,
add the image and name of the person and below that give layout for the rest of the details.
• In the <body> element, we will give the title of the page using h1 tag after that we will add an
image of him in the img tag with some caption. We will write all the contents (using p tags).
OR
• We can also use Ordered/Unordered List Extended task: Formatting
for content to display in Bullet points.F • Highlight Heading to ‘Steve Jobs’
• Change the text font style to “Luicida
Calligraphy”
• Center align the image and resize to 200x200
Refer to:
https://www.w3schools.com/html/html_formatting.asp
Revision
PLENARY:
1. The <img src=“image.jpg”> tag puts an image on the webpage. True or False?
2. The ‘alt’ element inside the tag tells the computer which part of a picture should be
clickable. True or False?
3. The height and width of an image are measured in pixels which are called px in
HTML. True or False?
Revision
PLENARY:
1. The <img src=“image.jpg”> tag puts an image on the webpage. True or False?
2. The ‘alt’ element inside the tag tells the computer which part of a picture should be
clickable. True or False?
3. The height and width of an image are measured in pixels which are called px in
HTML. True or False?
Revision
SUCCESS CRITERIA:
• I will be able to demonstrate this feature and the variables I can control.