Syntax in CSS
Program 1 <html> <head> <link rel=”stylesheet” href=”styles1.css”> <!– <style> p{ color:red; } </style>–> </head> <body <p> This is my website <p> </body> </html>
Program 1 <html> <head> <link rel=”stylesheet” href=”styles1.css”> <!– <style> p{ color:red; } </style>–> </head> <body <p> This is my website <p> </body> </html>
CSS, or Cascading Style Sheets, is a language used to control the presentation of HTML and XML documents. It defines the layout, colors, and other visual elements of a webpage. The basic syntax of...