+ 3
HTML-Tags are the core of HTML..
Without them HTML cannot exist.
There are many different tags with different functions.
But there is a structure in every HTML-Document:
<!DOCTYPE HTML>
<html>
<head>
<title>Your page title</title>
<meta charset="UTF-8">
</head>
<body>
Your content
</body>
</html>
<!DOCTYPE HTML>:
This is a required definition for valid html-documents.
<html>:
This is the root of your HTML-Document.
<head>:
This Tag is not visible on your webpage. There are informations about your website, scripts and more.
<title>:
Between <title> and </title> you can write your page title that is displayed on the browser window.
<meta>:
This tag contains information about your website like the author of the webpage. Or the description of the site. But the charger is required. The default is "UTF-8".
<body>:
This is the visible area of your webpage.
You can use this tags to format your text.:
<b>Text</b> makes your text bold.
<i>Text</i> makes your text italic.
<u>Text</u> makes your text underline.
For more information visit the HTML-Course
of SoloLearn.