What is html ?
Simply put HTML is text with tags. HTML stands for Hyper Text Markup Language and HTML is text containing small markup tags. This text in located in the source code of your website. These tags tell a web browser how to display the text on your website. HTML has a start (<...>) and the end tag (</..>) These tags tell the browser that you want to make the text do something.
Formatting Tags
There are several formatting tags that are commonly used. The underline and bold tags are commonly used in website design. Examples of formatting tags are the italic tag, the bold tag, the span tag <span style="letter-spacing: 1">span tag </span></p>
I have added the bold tag to the heading of this paragraph to make it stand out. <b>Formatting Tags</b>
Other Types of Formatting Tags
-
italic tag <i>italic tag </i>
-
span tag <span style="letter-spacing: 2">span tag </span>
-
underline tag <u>underline tag </u>
-
Bold Tag <b>Bold Tag</b>
-
Bulleted List Tag <li>Bulleted List Tag </li>
<html> This is the first tag of your website and tells a browser that this is
the start of a html document
<head>
<title>This is the name of your website </title> The title of your website is displayed in the browser of your website
Description Meta Tags
Keyword Meta Tags
and Robot Meta Tags go in the head portion of your HTML
The other tags and text between the head tags is the header information. This is the information the search engines will see.
</head>
<body>
This is where the contents of your website goes.
</body>
</html> This is the last tag in your document, and tells a browser that this is
the end of the website