Thread: What is CSS
View Single Post
Old 02-12-2014, 10:13 PM   #11
MichaelHolloman
Registered User
 
Join Date: Dec 2013
Posts: 21
Said by all above it is Cascading style sheet. The latest version of CSS is CSS3.
Here is an example of the code.
body
{
background-color:green;
}
h1
{
color: orange;
text-align:center;
}
p
{
font-family:"Times New Roman";
font-size:20px;
}

CSS is embedded with HTML by :
<style type="text/css">
body {
color: purple;
background-color: #d8da3d }
</style>
MichaelHolloman is offline   Reply With Quote