CSS3 Introduction

CSS 3 is a language that describes the style of an HTML document.
CSS3 is the latest evolution of the Cascading Style Sheets language, CSS 3 describes how HTML elements should be displayed.
CSS3 is the latest evolution of the Cascading Style Sheets language, CSS 3 describes how HTML elements should be displayed.
What is CSS?
CSS stands for Cascading Style Sheets, CSS describes how HTML elements are to be displayed on screen, paper, or in other media, CSS saves a lot of work. It can control the layout of multiple web pages all at once, External stylesheets are stored in CSS files.CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes.
CSS ko Head section k ander type karty hain.

ye code apni HTML File k head section main type karain. or body section main

Source Code:
<!DOCTYPE html>
<html>
<head>
<style>
body { background-color: orange; }
h1 { color: green; text-align: center; }
p { font-family: hobo std; font-size: 25px; }
</style>
</head>
<body>
<h1>CSS Heading Example</h1>
<p>CSS Paragraph Example I am Muhammad Waqas. :) </p>
<p> Paragraph k liye P ka tag istemal kia jata ha.</p>
</body>
</html>
copy this code in your HTML File and see the result, :)
<!DOCTYPE html>
<html>
<head>
<style>
body { background-color: orange; }
h1 { color: green; text-align: center; }
p { font-family: hobo std; font-size: 25px; }
</style>
</head>
<body>
<h1>CSS Heading Example</h1>
<p>CSS Paragraph Example I am Muhammad Waqas. :) </p>
<p> Paragraph k liye P ka tag istemal kia jata ha.</p>
</body>
</html>
copy this code in your HTML File and see the result, :)
CSS3 Introduction
Reviewed by Youthkorner.com
on
Friday, January 20, 2017
Rating:

No comments:
SPEAK UP!
Share your valuable thoughts and comments about this article/post.