Google News
logo
CSS - Interview Questions
What are the ways to integrate CSS as a web page?
There are three methods to integrate CSS in the form of the web page:
 
Embedded : There can be a style element inside the head element inside which we can place the code.

Inline : CSS applied HTML elements can be found using style attributes.

Imported or Linked : In case of linked or imported CSS, the CSS is placed in an external file and link element is used to link it.
Advertisement