How many types of CSS?
There are three methods to use CSS.
- INLINE CSS:
Use of CSS in html particular tag.
- INTERNAL CSS:
- EXTERNAL CSS:
to make extra file of CSS and then link to your website. Use of external CSS is best because it consume less time and less page.LETS SEE EXAMPLE OF INLINE CSS:
<HTML>
<HEAD>
<TITLE>
INLINE CSS USED IN PARTICULAR TAG.
</TITLE>
<BODY>
<H1 style="color:WHITE; background:RED;">
What is RAM?
</H1>
<P style="color:BLUE;"> RAM stands for random access memory, and it's one of the most fundamental elements of computing. RAM is a temporary memory bank where your find multiple kind of information.
What is RAM?
RAM stands for random access memory, and it's one of the most fundamental elements of computing. RAM is a temporary memory bank where your find multiple kind of information.
What is ROM?
Read-only memory is a type of non-volatile memory used in computers and other electronic devices. Data stored in ROM cannot be electronically modified after the manufacture of the memory device. Wikipedia
What is input and output devices?
What is computer?
Lets see example of internal CSS:
<HTML>
<HEAD>
<TITLE>
INTERNAL CSS USED IN HEAD TAG.
</TITLE><STYLE TYPE="TEXT/CSS">
H1{COLOR:YELLOW; BACKGROUND:BLACK;}
H2{COLOR:YELLOW; BACKGROUND:BLACK;}
P{COLOR:BLUE;}
</STYLE><H1>What is RAM?</H1>
<P > RAM stands for random access memory, and it's one of the most fundamental elements of computing. RAM is a temporary memory bank where your find multiple kind of information.
What is RAM?
RAM stands for random access memory, and it's one of the most fundamental elements of computing. RAM is a temporary memory bank where your find multiple kind of information.
What is ROM?
Read-only memory is a type of non-volatile memory used in computers and other electronic devices. Data stored in ROM cannot be electronically modified after the manufacture of the memory device. Wikipedia
What is input and output devices?
What is computer?
Use of external CSS with example:
<HEAD>
<TITLE>
INLINE CSS USED IN PARTICULAR TAG.
</TITLE>
<LINK REL="STYLESHEET" TYPE="TEXT/CSS" HREF="WWW.CSS">
</HEAD>
<BODY>
<H1>
What is RAM?
</H1>
<P> RAM stands for random access memory, and it's one of the most fundamental elements of computing. RAM is a temporary memory bank where your find multiple kind of information.
What is RAM?
RAM stands for random access memory, and it's one of the most fundamental elements of computing. RAM is a temporary memory bank where your find multiple kind of information.
What is ROM?
Read-only memory is a type of non-volatile memory used in computers and other electronic devices. Data stored in ROM cannot be electronically modified after the manufacture of the memory device. Wikipedia