Download as pdf or txt
Download as pdf or txt
You are on page 1of 4

Address :- New Delhi Contact :- 8882880965

STP COMPUTER EDUCATION


The Best Quality of Software Programming Computer Education
www.stpcomputereducation.com

SUBJECT :- WEB DESIGNING

Chapter - 1
Introduction to CSS 2
CSS version 2 (Cascading Style Sheet)

If you want to design your webpage so you have to learn css language.
अगर हम आपनी वेबसाइट को डिजाईन करना चाहते है तो हमे CSS पढना होगा !

What your HTML ELEMENT will look like on different screens, you can also create
it in CSS.
आपका HTML ELEMENT अलग अलग screen पर कैसा डिखेगा ये भी आप CSS में बना सकते है

CSS saves a lot of work. It can control the layout of multiple web pages all at
once
CSS की मिि से वैबसाइट को डिज़ाइन करने में बहोत कम समय लगता है । CSS में आप एक ही बार मे
कई सारे डिज़ाइन को control कर सकते है

What is design in the respect of website and software’s ?


A graphics which attracts any one for long-long time with user scalability.
एक ऐसी graphics जो कसी को आकर्षडत करे और साथ ही साथ जो user के device के अनुसार अपने
आकृती मे बिलाव करे उसे डिज़ाइन कहा जाता है ।
Difference Between HTML and CSS
HTML CSS

But in css you can’t create


Html is used to create webpages and
webpages and can’t write on
something write on webpage.
webpages
HTML से आप WEBPAGE बनाके उसपे
िेककन CSS मे आप नाही WEBPAGE बना
लिखने का काम करते है
सकते है और नाही कुछ लिख सकते है ।

You can`t design your webpage in


But in css you can do.
html language.
िेककन css मे आप अपने website को
आप html मे website को किज़ाइन नही कर
किज़ाइन कर सकते है ।
सकते है

इसे धयान से पढ़े

अगर आप html मे website को design करना चाहते है तो आपको photoshop जैसे


softwares की सहायता िेनी पड़े गी िेककन css मे किज़ाइन करते वक़्त हमे photoshop
जैसी softwares की कम सहायता िेनी पड़ती है इसी वजह से css से design ककया गया
website बड़ी ही तेजी से open होती है ।

Without webpage or content you can`t design your website


That means
Without html you can`t use css
CSS उसी चीज को किज़ाइन करता है जो html से बन चुका है जैसे -:

HTML CSS
css have some property and value to design html page that means if you
want to learn css so you have to remember css property and value.

css के पास कुछ properties और value है जजसकी मदद से हम html page को किज़ाइन
करते है इसका मतऱब अगर आप css सीखना चाहते है तो css के properties और values
को याद करे ।

List of CSS Properties & Values


Text Designing Properties

PROPERTY VALUE
color red , #323232 , rgb(120,102,65)

text-align left , right , center , justify

font-size 20px

sans-serif , verdana , mangal ,


font-family
calibri

font-weight bold , normal

font-style italic , oblique , normal

text-transform Uppercase, lowercase, capitalize

letter-spacing 20px

word-spacing 20px

line-height 20px

text-indent 20px
Stylesheets
A METHODS TO IMPLEMENTING PROPERTY AND VALUE IN HTML PAGE IS KNOWN AS STYLE SHEET.
CSS के PROPERTIES और VALUE को HTML PAGE मे िािने के तरीके को STYLESHEET कहा जाता है ।

STYLESHEET तीन प्रकार के होते है

There are three types of stylesheets

1. Inline stylesheet
2. Internal stylesheet
3. External stylesheet

INLINE STYLESHEET

Syntax :-

<tagname style=”property : value”>Content</tagname>

<p style=”color : red”>I am a student of STP Computer Education</p>

You might also like