Module #1 - Introduction To HTML
Module #1 - Introduction To HTML
Module #1 - Introduction To HTML
introduction to HTML
What is HTML?
• with HTML you can create your own
Website
What is HTML?
HTML stands for
Example:
<p>
This is a paragraph. Everything between
these two tags is part of this paragraph. </p>
Standalone Tag
• don't have end tags
<html>
<head>
<title>Title of page</title>
</head>
<body>
This is a very basic webpage.
<b>This text will be displayed in bold</b>
</body>
</html>
• Absolute URL
• Relative URL
Absolute URL
• Links to an external image that is hosted on
another website.
Example:
src="https://www.w3schools.com/images/img_gi
rl.jpg".
Example: src="/images/img_girl.jpg".