Aim: Apply Style Sheets in Web Pages.: Styling HTML With CSS
Aim: Apply Style Sheets in Web Pages.: Styling HTML With CSS
176120316022
Practical-6
1. Inline CSS:-
An inline CSS is used to apply a unique style to a single HTML element.
An inline CSS uses the style attribute of an HTML element.
We used Inline CSS in our last practices.
2. 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:
Now See the following example of HTML Internal CSS. After writing following code
in any text editor Save it with .HTML and Run it one any Browser.
HTML File:-
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
p {color: black;
text-align: center;
font-family: monospace;
font-size: 40px;
}
h1
Internet Technology
Jadhav Mayur P. 176120316022
{
color: red;
background:yellow;
font-family: monospace;
font-size: 30px;
}
h2
{
color:blue;
background:yellow;
font-family:monospace;
font-size: 30px;
}
h3
{
color:yellow;
background: red;
font-family: monospace;
font-size: 35px;
}
h4
{
color:powderblue;
background: green;
font-size: 40px;
}
</style>
<title>CSS STYLE TAGS</title>
</head>
<body>
<marquee> <p><b><u> CSS STYLE TAGS</u></b> </marquee><br>
<h3> HTML page using <u>Internal</u> css style </h3>
<h1>There are <u>three</u> types of CSS document<BR> </h1>
<h2><u>1.Inline CSS <br>2.Internal CSS <br> 3.External CSS </u> </h2>
<h4>Internal CSS document is also referred as<u> EMBEDED CSS Document
</u></h4>
</body>
</html>
Write following code it any Text Editor and Save it using .HTML extension.
<html>
<head>
</head>
<body>
</body>
</html>
There is no effect of this file because in External CSS we have to make one External
file with .CSS extension.
color: black;
text-align: center;
font-family: monospace;
font-size: 40px;
h1
color: red;
background:yellow;
font-family: monospace;
font-size: 30px;
h2
color:blue;
background:yellow;
font-family:monospace;
font-size: 30px;
h3
background: red;
font-family: monospace;
font-size: 35px;
h4
color:powderblue;
background: green;
font-size: 40px;
OUTPUT:-