How can you integrate CSS on a web page?

devquora
devquora

Posted On: Feb 22, 2018

 

    1 Answer Written

  •  devquora
    Answered by devquora

    To integrate CSS on a web page, you have 3 options:

    1. Inline CSS: You can add CSS styles directly to an HTML element using the "style" attribute.
    2. Internal CSS: You can add CSS styles to the head section of an HTML document using the "style" tag.
    3. External CSS: You can create a separate CSS file and link it to your HTML document using the "link" tag in the head section.

Related Questions

Please Login or Register to leave a response.

Related Questions

CSS Interview Questions

What is CSS?

Cascading style sheets or CSS is a web designing language simple for HTML elements. The application is commonly known a..

CSS Interview Questions

What are the advantages of CSS?

There are a number of advantages of CSS, It gives lots of flexibility for setting the properties of the element Easy ma..

CSS Interview Questions

In how many ways can a CSS be integrated as a web page?

CSS can be integrated in three ways: Inline: term is used when the CSS code have attribute of HTML elements<p styl..