Welcome to WEB LEARN SPOT
HTML - Hyper Text Markup Language
HTML is at the core of every web page. Behind every web page you've ever visited there is HTML code that your web browser uses to display elements like text, images and tables.
In this course, you'll work with HTML code to control the structure and the elements of a web page.
HTML is the standard language for documents designed to be displayed in a web browser.
Now we learn about a structure of a HTML page
1. Structure of a HTML page
simple structure of a HTML page:
(you can copy and paste in your own editor for better practice)
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
</body>
</html>
<!DOCTYPE html> => version
<head> => used for meta instructions
<title> => used for title on the top of the tab
<body> => used for the content of the webpage
HTML CODE EDITOR:
(you can practice in this editor)
