View Single Post
Old 05-27-2015, 07:00 AM   #2
yasar
Registered User
 
Join Date: May 2015
Posts: 61
Css is used to define the layout of html site,
These are 3 type
Inline css
Ex:
<span style="color:#000"></span>
External Css
<div class ="example">
Hi How Are You
</div>

Below Css Are used to External sheet this sheet connect with inbetween the Html Header tag

.example
{
color:red;
}
Internal css
Ex:
<head>
<style>
.example
{
color:red;
}
</style>
</head>
<div class ="example">
Hi How Are You
</div>
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
yasar is offline   Reply With Quote