CSS TUTORIAL

What is CSS?

  • CSS stands for Cascading Style Sheets
  • CSS describes how HTML elements are to be displayed on a screen, paper, or in other media.
  • CSS saves a lot of work. It can control the layout of multiple web pages all at once.
  • External stylesheets are stored in CSS files,

This CSS tutorial contains hundreds of CSS examples. With our online editor, you can edit the CSS, and click on a button to view the result.


CSS Example




OUTPUT: ;

This CSS tutorial contains hundreds of CSS examples. With our online editor, you can edit the CSS, and click on a button to view the result.  CSS Example    <style> body {   background-color: yellow; }  h1 {   color: white;   text-align: center; }  p {   font-family: verdana;   font-size: 20px; } </style>  <body>  <h1>My First CSS Example</h1> <p>This is a paragraph.</p>  </body>      Copy   OUTPUT: ;

Comments :

Post a Comment