CSS

 

CSS Tutorial

CSS tutorial

CSS tutorial or CSS 3 tutorial provides basic and advanced concepts of CSS technology. Our CSS tutorial is developed for beginners and professionals. The major points of CSS are given below:

  • CSS stands for Cascading Style Sheet.
  • CSS is used to design HTML tags.
  • CSS is a widely used language on the web.
  • HTML, CSS and JavaScript are used for web designing. It helps the web designers to apply style on HTML tags.

CSS Example with CSS Editor

In this tutorial, you will get a lot of CSS examples, you can edit and run these examples with our online CSS editor tool.

  1. <!DOCTYPE>  
  2. <html>  
  3. <head>  
  4. <style>  
  5. h1{  
  6. color:white;  
  7. background-color:red;  
  8. padding:5px;  
  9. }  
  10. p{  
  11. color:blue;  
  12. }  
  13. </style>  
  14. </head>  
  15. <body>  
  16. <h1>Write Your First CSS Example</h1>  
  17. <p>This is Paragraph.</p>  
  18. </body>  
  19. </html>  
Previous Post Next Post