CSS Implementation

Home / CSS / CSS Implementation

CSS Implementation


Three way to Implement CSS:
  1. inline style
  2. inpage style tag
  3. External style sheet

1. Inline style:

  <p style="color: red;" >Hello World!</p>


2.Inpage style tag:

<head>
        <style>
        p{
            color: red;
            text-align: center;
        }
    </style>
</head>
<body>
    <p>Hello World!</p>
    <p>These paragraphs are styled with CSS.</p>
</body>

3.External style sheet:


<head>  
    <link rel="stylesheet" href="style.css">    
</head>