How can you integrate CSS on a web page?
How can you integrate CSS on a web page?
external css | what are the three main ways to apply css styles to a web page. | internal css in html | css code | what are the different variations of css | css ref | link css to html
external css | what are the three main ways to apply css styles to a web page. | internal css in html | css code | what are the different variations of css | css ref | link css to html
external css | what are the three main ways to apply css styles to a web page. | internal css in html | css code | what are the different variations of css | css ref | link css to html
external css | what are the three main ways to apply css styles to a web page. | internal css in html | css code | what are the different variations of css | css ref | link css to html
external css | what are the three main ways to apply css styles to a web page. | internal css in html | css code | what are the different variations of css | css ref | link css to html
external css | what are the three main ways to apply css styles to a web page. | internal css in html | css code | what are the different variations of css | css ref | link css to html external css what are the three main ways to apply css styles to a web page. internal css in html css code what are the different variations of css css ref link css to html
Share
There are three ways of inserting a style sheet in a web page.
External Style Sheet:
<head>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
Internal Style Sheet:
<head>
<style>
h1 {
color: red;
margin-left: 10px;
}
</style>
</head>
Inline style:
<h1 style="color:red;margin-right:10px;">This is a heading</h1>