CSS Tutorial
Save a lot of work with CSS! In our CSS tutorial you will learn how to use CSS to control the style and layout of multiple Web pages all at once. |
CSS Example
|
<html>
<head>
<style type="text/css">
body
{
background-color:#d0e4fe;
}
h1
{
color:orange;
text-align:center;
}
p
{
font-family:"Times New Roman";
font-size:20px;
}
</style>
</head>
<body>
<h1>CSS example!</h1>
<p>This is a paragraph.</p>
</body>
</html>
What You Should Already Know
Before you continue you should have a basic understanding of the following:
- HTML / XHTML
If you want to study these subjects first, find the tutorials on our .
What is CSS?
- CSS stands for Cascading Style Sheets
- Styles define how to display HTML elements
- Styles were added to HTML 4.0 to solve a problem
- External Style Sheets can save a lot of work
- External Style Sheets are stored in CSS files
----------------------------------------------------------
** If you like this post please like our page in facebook "Dot Net Support"
0 comments:
Post a Comment