Posts

Image
                  Example 1                     Example 2 a) explain the html above EXAMPLE 1:  1. `<!DOCTYPE html>`: This is the doctype declaration and it tells the browser that the document is an HTML5 document. 2. `<html>`: This is the root element of the HTML document and contains all the other elements. 3. `<head>`: This element is used to define the metadata and other non-visible elements of the document. It usually contains elements like the title, links to stylesheets or scripts, and other information about the document. 4. `<link rel="stylesheet" href="styles.css">`: This is a link element that is used to include an external stylesheet file named "styles.css". The `rel` attribute specifies the relationship between the current document and the linked resource, and the `href` attribute specifies the location of the stylesheet file. 5. `</head>`: This ...

Lab 8 Web technology

Image
Click here