LEARNING HTML
In this lesson you will study about the basics of Hypertext Markup Language, the common protocol used in
HTML - Hypertext Markup Language
Basic Elements
-----------------------------------------
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
-----------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>
HTML Links
-----------------------------------------
<a href="https://www.febstar.com">This is a link</a>
-----------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>
HTML Images
----------------------------------------
<img src="myphoto.jpg" alt="myphotoonline.com" width="104" height="142">
---------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>
ACTIVITY
Create a single webpage using the basic elements of a website as above. Your webpage should have the following:
- Webpage Title : My Life at Vietnam Australia International School
- Minimum of 100 words paragraph about the topic.
- Images inserted.