## EX.NO: 04 ### Webpage using Cascading Style Sheet ### Aim To create a web page that demonstrates the use of all three types of Cascading Style Sheets: External, Internal (Embedded), and Inline CSS. ### Algorithm 1. Create an HTML document with the proper structure using ``, ``, `
`, and `` elements. 2. In the head section, link the external stylesheet `MyStyle.css` using the `` tag. 3. Add an embedded stylesheet inside the `This paragraph demonstrates inline CSS styling.
``` Style.css CSS ``` /* Add your external CSS here */ body { background-color: #ADD8E6; } h1 { color: #000080; } ``` ### OUTPUT The webpage displays a heading and a paragraph. The background is light blue, the heading is dark blue, and the paragraph uses blue text with a top margin. ### Result The web page was created successfully using External, Internal (Embedded), and Inline CSS, and all the required styles were applied correctly.