It is not possible to use the less than (<) or greater than (>) signs in your text, because the browser will mix them with tags.
To display a less than sign we must write: < or <
The advantage of using an entity name, instead of a number, is that the name is easier to remember. However, the disadvantage is that browsers may not support all entity names
The head element is a container for all the head elements. Elements inside <head> can include scripts, instruct the browser where to find style sheets, provide meta information, and more.
defines a title in the browser toolbar
provides a title for the page when it is added to favorites
displays a title for the page in search-engine results
The <base> tag specifies a default address or a default target for all links on a page
The <link> tag defines the relationship between a document and an external resource.
The <style> tag is used to define style information for an HTML document.
<style type="text/css"> body {background-color:yellow} p {color:blue} </style>
The <img> tag is empty, which means that it contains attributes only, and has no closing tag.
you need to use the src attribute. Src stands for "source". The value of the src attribute is the URL of the image you want to display.
<img src="url" alt="some_text"/>
The browser displays the image where the <img> tag occurs in the document.
The alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader).
Links allow users to click their way from page to page.
A hyperlink (or link) is a word, group of words, or image that you can click on to jump to a new document or a new section within the current document.
To create a link
To create a bookmark
The target attribute specifies where to open the linked document.
The name Attribute
Note: Always add a trailing slash to subfolder references.