An HTML Element goes into a web-page and identifies the HTML content in the web page
This is important. At the top of the page, We have to declare the type of the HTML document by typing
The head tag starts the header section of your web-page. The code that goes inside the head tag does not appear on your page.
Title tag sets the title of your page. It is the name that you see on the tab title when you open a browser.
Metadata is written in the head tag of your page. It is used for search engines. There are different meta fields (description,keywords,author,viewport).
An HTML element that creates a paragraph
HTML links are defined with the <a.> tag
HTML heading are defined with the <h1.> to <h6.>. <h1.> is the most important heading. <h6.> is the least important. They have to be written without the dot.
After closing your header section, then you start with your body section. The body tag is where you have all your page content.
HTML images are defined with the <img.> tag.The source file (src), alternative text (alt), width, and height are provided as attributes
HTML buttons are defined with the <button.> tag
HTML lists are defined with the <ul.> (unordered/bullet list) or the <ol.> (ordered/numbered list) tag, followed by <li.> tags (list items):