Skip to main content

CSS Tutorial

CSS tutorial provides basic and advanced concepts of CSS technology.

This tutorial will teach you CSS from basic to advanced.

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.

Example

<!DOCTYPE>  
<html>
<head>
<style>
h1{
color:white;
background-color:red;
padding:5px;
}
p{
color:blue;
}
</style>
</head>
<body>
<h1>Write Your First CSS Example</h1>
<p>This is Paragraph.</p>
</body>
</html>

Output:

First CSS example

Table of Contents