Filter (Advanced Search)
Downloads
13
Views
393
Video

Internal CSS | CSS

Details

Internal style sheet : ਇਹ ਪੂਰੇ ਵੈੱਬਪੇਜ ਲਈ ਵਰਤੀ ਜਾਂਦੀ ਹੈ ਅਤੇ ਇਸਦਾ ਕਡ <head> ਟੈਗ ਵਿੱਚ ਲਿਖਿਆ ਜਾਂਦਾ ਹੈ, ਉਦਾਹਰਣ :

<head>

<style>

p {

color: red; border: 2px solid;

}

</style>

</head>

An internal CSS is used to define a style for a single HTML page.

An internal CSS is defined in the <head> section of an HTML page, within a <style> element.

The following example sets the text color of ALL the <h1> elements (on that page) to blue, and the text color of ALL the <p> elements to red. In addition, the page will be displayed with a "powderblue" background color: 


<!DOCTYPE html>
<html>
<head>
<title>Internal CSS</title>
<style>
body {background-color: powderblue;}
h1{color: blue;}
p{color: red;}
</style>
</head>
<body>
<h1>Internal CSS</h1>
<p>GSSS KHOKHAR</p>

</body>
</html>


Output


Internal CSS

An internal CSS is used to define a style for a single HTML page.

An internal CSS is defined in the <head> section of an HTML page, within a <style> element.

The following example sets the text color of ALL the <h1> elements (on that page) to blue, and the text color of ALL the <p> elements to red. In addition, the page will be displayed with a "powderblue" background color: 

Ad