CASCADING STYLE SHEETS(CSS) Cascading Style Sheets is a simple design language intended to simplify the process of making web pages presentable. Using CSS, you can control the color of the text, the style of fonts, the spacing between paragraphs, how columns are sized and laid out, what background images or colors are used, layout designs, variations in display for different devices and screen sizes as well as a variety of other effects. TYPES OF CSS • Inline CSS •Internal CSS •External CSS Example: Inline CSS <!DOCTYPE html> <html> <head> <title> Inline CSS </title> </head> <body> <h1> Introduction to CSS</h1> <p style=“color:red”> Hello LPU</p> <p style= “color:red”> Welcome to CSS</p> <body> </html> Example: Internal CSS <!DOCTYPE html> <html> <head> <title> CSS Internal </title> <style> p { color:red; } h1 { bac
The Learning Plarform