ASSIGNMENT
Question mark icon
FIVE HTML ELEMENTS AND WHAT THEY ARE USED FOR
Five HTML Elements And What They Are Used For

1. <h1> </h1> Heading element: Used for main headings and titles.

2. <p>  </p> Paragraph element: Used for paragraphs of text.

3. <b> </b> Bold element: Used to make text bold.

4. <i>  </i> Italic element: Used to make text italic. 

5. <div></div> tag is used to group together other elements; used for styling, layout, and semantic purposes. It is a versatile element that can be used in various ways, 

Five HTML Elements And What They Are Used For

1. <h1> </h1> Heading element: Used for main headings and titles.


2. <p>  </p> Paragraph element: Used for paragraphs of text.


3. <b> </b> Bold element: Used to make text bold.


4. <i>  </i> Italic element: Used to make text italic. 
5. <div></div> tag is used to group together other elements; used for styling, layout, and semantic purposes. It is a versatile element that can be used in various ways, 

List Ten HTML Tags
1. <form>
2. <textarea>
3. <select>
4. <option>
5. <label>
6. <button>
7. <header>
8. <footer>
9. <nav>   
10. <table>
List Five Self Close HTML Tags
1. <br />
2. <hr />
3. <img />
4. <input />
5. <link />
Write A Two CSS Script That Has Selector & Declaration
1.
selector: h1 {
  declaration: color: blue;
}
```
2
selector: .header-nav {
  declaration: background-color: rgb(255, 100, 50);
  declaration: padding: 20px;
}

How To CSS Script Into A Webpage

1. Inline Styles:
Adding CSS directly to an HTML element using the `style` attribute.


<h1 style="color: blue;">Heading</h1>


2. Internal Stylesheet:
Adding CSS to the `<head>` section of an HTML document using the `<style>` tag.

Example

<head>

  <style>

    h1 { color: blue; }

  </style>

</head>


3. External Stylesheet:
Linking an external CSS file to an HTML document using the `<link>` tag.

<head>

  <link rel="stylesheet" type="text/css" href="styles.css">

</head>

about1
FIVE HTML ELEMENTS AND WHAT THEY ARE USED FOR
Question mark icon
List Ten HTML Tags
List Ten HTML Tags
1. <form>
2. <textarea>
3. <select>
4. <option>
5. <label>
6. <button>
7. <header>
8. <footer>
9. <nav>   
10. <table>
Question mark icon
List Five Self Close HTML Tags
List Five Self Close HTML Tags
1. <br />
2. <hr />
3. <img />
4. <input />
5. <link />
Question mark icon
Write Two CSS Scripts That Has Selector & Declaration
 Write Two CSS Scripts That Has Selector & Declaration

1.

selector: h1 {

  declaration: color: blue;

}

2

selector: .header-nav {

  declaration: background-color: rgb(255, 100, 50);

  declaration: padding: 20px;

}

Question mark icon
How To CSS Script Into A Webpage
 How To Write CSS Script Into A Webpage

1. Inline Styles:
Adding CSS directly to an HTML element using the `style` attribute.

Example:

<h1 style="color: blue;">Heading</h1>


2. Internal Stylesheet:
Adding CSS to the `<head>` section of an HTML document using the `<style>` tag.

Example

<head>

  <style>

    h1 { color: blue; }

  </style>

</head>


3. External Stylesheet:
Linking an external CSS file to an HTML document using the `<link>` tag.
Example

<head>

  <link rel="stylesheet" type="text/css" href="styles.css">

</head>

1
3 Weeks Website Design training
1
Assignments
1
Facilitators
1
PMA
1
Projects
Testimonials
FB_IMG_1719945943230
Victor

Learning Website Design at Daystar Dsap has being indeed a blessing in million ways.