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,
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>
Learning Website Design at Daystar Dsap has being indeed a blessing in million ways.