WEB DEVELOPMENT OR WEBSITE LANGUAGES:
#2: CSS:
in this slide i will tell you about what is CSS langue and IMPORTANCE of CSS language for making a website or website page.
CSS: CSS stands for cascading style sheet. it is a combination of color and style.
for example you want to add a background color in your page by using CSS property.
there are three types of CSS.
1# INLINE CSS.
2# INTERNAL CSS.
3# EXTERNAL CSS.
inline css means css within a tag.
internal css means css with in a style
external css means style in another page and create a link between the page.
if you want to include a background color in your page by using css you need to follow the following rules.
<style type="background-color: green;"> for inline css
<style>
{
background-color: green;
width="100";
height="100";
padding="200;
</style> for internel css.
if you want to include a table in your webpage , you need to follow the following rules using css.
<style>
th, td, {
<table border="1" cellspan="0";>
</style>
Comments
Post a Comment