Thread: what is CSS?
View Single Post
Old 02-02-2015, 10:21 PM   #8
the furbox
Registered User
 
Join Date: Jan 2015
Location: India Ludhiana Punjab
Posts: 33
Cascading Style Sheet used for a creating a webpage and in html.
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #d0e4fe;
}

h1 {
color: orange;
text-align: center;
}

p {
font-family: "Times New Roman";
font-size: 20px;
}
</style>
</head>
<body>

<h1>My First CSS Example</h1>
<p>This is a paragraph.</p>

</body>
</html>
the furbox is offline   Reply With Quote