5 html element and what they are used for

1. <!DOCTYPE>  Defines the document type   
2.<html> Defines an HTML document
3.<head> Contains metadata/information for the document
4.<title> Defines a title for the document
5.<body> Defines the document's body
list 10 html tags and explain 5
1. <h1>...</h1> to <h6>...</h6> - Heading Tags

These are the heading tags from <h1> to <h6>. These tags are used to create Headings, Subheadings, and Minor-Headings on the web page. 


2. <p>...</p> - The paragraph tag

This is a paragraph tag which is used to group the text into a paragraph. Hence the purpose of this tag is to separate a part of text or paragraph. 
<p> </p>


3. <br> - The break tag

In an HTML document, the <br> tag is used to add a line break. 
<br>


4. <div>...</div> - The division tag

This HTML tag is used for division. The <div> tag divides a significant part of an HTML document from other parts. And it is mostly used to group more than one elements in a single element.
<div> </div>


5. <section>...</section> - The section tag

The <section> tag is used to define a section in an HTML document. It basically defines the section of a document such as headers, chapters, footers, or other sections. And the <section> is a semantic element.
<section> </section>
6. <img> - The image tag

7. <span>...</span> - The span tag

8. <li>...</li> - The list item tag

9. <ol>...</ol> - The ordered list tag

10. <ul>...</ul> - The unordered tag




list 5 selfclose tag (image is an example)
self-closing tags in HTML are <input/>, <hr/>, <br/>, <img/>
wtite a 2 css script that has selector and declaration
The selector points to the HTML element you want to style. The declaration block contains one or more declarations separated by semicolons. Each declaration includes a CSS property name and a value, separated by a colon.
A brief information of how to add css page to your webgage
CSS may be added to HTML in three different ways. To style a single HTML element on the page, use Inline CSS in a style attribute. By adding CSS to the head section of our HTML document, we can embed an internal stylesheet. We can also connect to an external stylesheet that separates our CSS from our HTML.