HTML CSS

Css use for designing web pages make colorful and other decoration

Css use in html file by three type learn more about in css

  1. Inline css
  2. Internal css
  3. External css

We discuss in this chapter only inline css 

When use single property

Syntax(style="property:value;")

These syntax property are inline css property

Example

Use multiple property

Syntax (style="property1: value1 ; property2 : value2; ")

Use multiple css property in inline

Example

What is inline css

 When css property used inside html tag is called inline css

Font-family property

Example


<h2 style = "color:red , background-color:yellow;" >This is h2 heading </h2>

<p style ="color:green, background-color: blue ; ">Apply multiple property of inline css </p>


Resut

This is h2 heading tag

Apply multiple property of inline css