Lecture 8 - HTML.PPTX
Lecture 8 - HTML.PPTX
THE BASICS
SPRING
Dr. Nisrine El Turky
2022
World Wide Web (WWW)
https://www.tutorialspoint.com/online_html_editor.php
Explore a web page
title
<head> </head>
Body – holds the visible text and images
<body> </body>
A Basic Web Page
<html>
<head>
<title> MY PAGE -
Home</title>
</head>
<body>
Hello, world!
</body>
</html>
Test Page
HTML Output
<ul>My list My list
<li> list item 1 list item 1
<li> list item 2
list item 2
<li> list item 3
list item 3
</ul>
<hr> </hr>
<style>
*{
font-family: sans-serif;
}
<p align=center> Hello, world! </p>
</style>
Hello, world!
</body>
</html>
Example 2
Check the Microsoft Word File.