SlideShare ist ein Scribd-Unternehmen logo
1 von 8
Downloaden Sie, um offline zu lesen
Certified CSS Designer
Sample Material
Certified CSS Designer
www.vskills.in Page 7
1. CSS BASICS1. CSS BASICS1. CSS BASICS1. CSS BASICS
1.1 Introduction1.1 Introduction1.1 Introduction1.1 Introduction
Cascading Style Sheets (CSS) is a language specifically made for illustrating the appearance of
various parts of a web page. CSS gives option to control the text color, fonts style, inter- paragraph
spacing, columns sizing and layout, background images or colors and many other visual effects.
CSS is used to style web pages, developed in HTML or XHTML
The major advantage of CSS is to customize the style of an entire website without changing each
page individually.
W3C laid out details for a style sheet language to separate the visual appearance of a web page
from its content and in 1994, Cascading HTML Style Sheets was proposed. CHSS became CSS
and in December 1996 the CSS level 1 Recommendation was published. Three more CSS
specifications have been published by the W3C of which CSS 2 became a recommendation
followed by CSS 2.1 and CSS 3 is an upcoming recommendation.
1.2 Why to use CSS1.2 Why to use CSS1.2 Why to use CSS1.2 Why to use CSS
HTML and XHTML is the base for all web pages on internet. CSS prevents repurposing of
HTML tags to get certain visual effects.
CSS-driven web design makes writing HTML easier. The HTML-only approach requires a lot
more code to achieve the same visual effects compared with CSS version.
BackgroundBackgroundBackgroundBackground
HTML was developed to structure information for easy comprehension like the <h1> tag indicates
an important headline and the <h2> tag for a subheading of the <h1> tag.
But soon HTML tags were used to control appearance rather than structure information like the
<blockquote> tag. The <table> tag was used to create columns of text and accurately place pictures
and text on a page. But sometimes nesting a table within a table within a table was used making it
very difficult to comprehend and maintain.
Hence, browser came out with new tags and attributes for making a page look better like <font> tag
has specification for font color and typeface. Graphics were also used to achieve desired visual
effects.
With introduction of CSS by W3C, HTML is used to structure and organize the content and CSS
to make that content visually appealing thus, separating presentation of content from the structure
and organization of content.
AdvantagesAdvantagesAdvantagesAdvantages
Effort and Time ReductionEffort and Time ReductionEffort and Time ReductionEffort and Time Reduction: CSS substantially reduces the time and effort to compose not only a
single document but for the whole website.
Certified CSS Designer
www.vskills.in Page 8
Bandwidth and Space ReductionBandwidth and Space ReductionBandwidth and Space ReductionBandwidth and Space Reduction: CSS is more versatile than HTML styling tags as its cascading
property reduces the disk space for styling a website and also the bandwidth required.
Centralized UpdateCentralized UpdateCentralized UpdateCentralized Update - Presentation and visual effects of a website can be centralized by using CSS.
IndependentIndependentIndependentIndependent: CSS can be written independently of HTML.
Multiple Device SupportMultiple Device SupportMultiple Device SupportMultiple Device Support: CSS allows content to be optimized for different devices like printer,
mobile devices, screen, etc using the same HTML document.
CachingCachingCachingCaching: CSS downloaded by browsers are cached hence, CSS file is downloaded only once fast
performance of website.
Advantages are illustrated as
1.31.31.31.3 CSSCSSCSSCSS EditorsEditorsEditorsEditors
CSS can be written with a plain text editor like notepad but advanced text editors do useful things
like code coloring or syntax highlighting, automatically completing the code and some editors are
Notepad++Notepad++Notepad++Notepad++: It is open source editor which is free.
Crimson EditorCrimson EditorCrimson EditorCrimson Editor: It is also a free editor.
HTMLHTMLHTMLHTML----kitkitkitkit: It is also a free editor.
Adobe DreAdobe DreAdobe DreAdobe Dreamweaveamweaveamweaveamweaver: It is commercial paid software.
1.41.41.41.4 AAAA CSS ExamCSS ExamCSS ExamCSS Exampleplepleple
This example introduces CSS and for which the HTML document is needed is given first and
then followed by the CSS file.
Webpage.htmWebpage.htmWebpage.htmWebpage.htm:
In your text editor of choice, enter the following markup
Certified CSS Designer
www.vskills.in Page 9
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1-strict.dtd">
<html lang=”en”>
<head>
<title>Vskills Example </title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>Vskills Certification </h1>
<div class="list1">
<h2>CSS Designer</h2>
<p>CSS designer certification is used to impart CSS certification.</p>
</div>
<div class="list1">
<h2>HTML Certification</h2>
<p>HTML certification is used to impart HTML certification.</p>
</div>
</body>
</html>
Style.cssStyle.cssStyle.cssStyle.css:
body {
width: 650px;
margin: 0 auto;
background: #FFF;
font: 12px sans-serif;
}
h1 {
font-size: 20px;
}
h2 {
font-size: 16px;
margin-top: 0;
}
.list1 {
margin: 10px 10px;
padding: 20px 20px;
border: 1px solid #F00;
}
Certified CSS Designer
www.vskills.in Page 10
OutputOutputOutputOutput:
As the figure shows that CSS can be used to stylize the various HTML elements on a web page
thus simplifying the process of styling the same.
1.5 Custom CSS1.5 Custom CSS1.5 Custom CSS1.5 Custom CSS
Web browsers in which CSS works, is not same as different browsers are installed in different
computers and each has different versions of same browser as well. Browser and their respective
versions support different levels of CSS styling and for achieving the visual effects of CSS across all
of them, work-around are used to get over the patchy support. Different browsers are
BrowserBrowserBrowserBrowser Rendering EngineRendering EngineRendering EngineRendering Engine CSS 2.CSS 2.CSS 2.CSS 2.1 support1 support1 support1 support
Google Chrome WebKit Full
Mozilla Firefox Gecko Full
Apple Safari WebKit Full
Internet Explorer Trident Full from IE 7
Opera Presto Full
1.61.61.61.6 Cross Browser TestingCross Browser TestingCross Browser TestingCross Browser Testing
There are a lot of web browsers for different operating systems and cross browser testing on some
is discussed
WindowsWindowsWindowsWindows- It can only run one version of IE hence can test only in installed version like IE 6, IE 7
or IE 8 but IETester program can display a web page for different versions like in IE 5.5, IE 6, IE
7 and IE 8. Install other browsers like Firefox, Safari, Opera or Chrome.
MacMacMacMac - Safari web browser is provided but for other web browser use a virtualization software like
VMWare.
Many cross-browser testing services websites are on internet for doing this task.
Certified CSS Designer
www.vskills.in Page 11
1.1.1.1.7777 IncludIncludIncludIncludinginginging CSSCSSCSSCSS
CSS can be included in a web page in following four ways
Embedded Style SheetsEmbedded Style SheetsEmbedded Style SheetsEmbedded Style Sheets - Embedded style sheets are included between <style> and </style> tags in
an web page’s head section as
<style type=”text/css”>
body { font: 12px sans-serif; }
</ style >
External Style SheetsExternal Style SheetsExternal Style SheetsExternal Style Sheets – In it CSS is in a separate document which is linked to an web page by the
<link> element with “rel” attribute having “stylesheet” as its value, “type” attribute having ”text/css”
as its value and “href “ attribute having the path to CSS file. It is used as
<link rel=”stylesheet” type=”text/css” href=”style.css”>
rel="stylesheet" tells the link type —in this case, a link to a style sheet.
type="text/css" lets web browser know the type of data to get—a text file, having CSS.
href points to the location of the external CSS file and has the value of a URL similar to the src
attribute in an <image> tag.
Import RuleImport RuleImport RuleImport Rule – It is similar to external style sheet but instead of <link> element, it uses “@import”
with “url” attribute storing the path to the CSS file. It is used as
<style type=”text/css”>
@import url(style.css);
</ style >
It can attach external style sheets to an external style sheet but the <link> tag can’t.
Direct StyleDirect StyleDirect StyleDirect Style - Inline styles with the style attribute are used to apply CSS rules directly to an element
in an web as
<body style=”font: 12px sans-serif;”>
What to chooseWhat to chooseWhat to chooseWhat to choose – External style sheets are preferred because it collects all style information in a
single file that is link to a web page with just a single line of code. You can attach the same external
style sheet to every page in your website, providing a unified design. It also makes a complete site
makeover as easy as editing a single text file.
It also help web pages load faster as no byte-hogging HTML tables or <font> tags or internal CSS
style code is used also, it is stored in cache or temporary space on computer for quick and
repeated access.
Certified CSS Designer
www.vskills.in Page 12
Internal CSS usage is explained in the figure
1.81.81.81.8 ValidatingValidatingValidatingValidating CSSCSSCSSCSS
CSS can be validated similar to HTML by CSS validator tool (http://jigsaw.w3.org/css-validator/)
provided by W3C by typing the URL of a web page (or the address to an external CSS file), or
uploading a CSS file or copy and pasting CSS code into a web form and submit it for validation.
Web browsers also have built-in error checking tools for examining CSS like in Mozilla Firefox
click Error Console option in Tools menu to open CSS errors.
It is shown in the figure.
Certified CSS Designer
www.vskills.in Page 13
Self Assessment QSelf Assessment QSelf Assessment QSelf Assessment Questionsuestionsuestionsuestions
Q.1 CSS is used for
A. Content Development
B. Content tagging
C. Content Styling
D. None
Q.2 Only external CSS files can be used for styling a web page
A. True
B. False
C. Can not say
D. None
Q.3 CSS should be validated
A. True
B. False
C. Can not say
D. None
AnswersAnswersAnswersAnswers :::: 1-C, 2-B,3-A

Weitere ähnliche Inhalte

Was ist angesagt?

CSS Comprehensive Overview
CSS Comprehensive OverviewCSS Comprehensive Overview
CSS Comprehensive OverviewMohamed Loey
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basicsNikita Garg
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTMLyht4ever
 
Hyper text markup Language
Hyper text markup LanguageHyper text markup Language
Hyper text markup LanguageNaveeth Babu
 
Vskills certified html designer Notes
Vskills certified html designer NotesVskills certified html designer Notes
Vskills certified html designer NotesVskills
 
Practical file on web technology(html)
Practical file on web technology(html)Practical file on web technology(html)
Practical file on web technology(html)RAJWANT KAUR
 
Html viva questions
Html viva questionsHtml viva questions
Html viva questionsVipul Naik
 
Web technology practical list
Web technology practical listWeb technology practical list
Web technology practical listdesaipratu10
 
HTML + CSS Examples
HTML + CSS ExamplesHTML + CSS Examples
HTML + CSS ExamplesMohamed Loey
 
HTML Basic, CSS Basic, JavaScript basic.
HTML Basic, CSS Basic, JavaScript basic.HTML Basic, CSS Basic, JavaScript basic.
HTML Basic, CSS Basic, JavaScript basic.Beqa Chacha
 
Creating WebPages using HTML
Creating WebPages using HTMLCreating WebPages using HTML
Creating WebPages using HTMLMohammad Arshad
 
HTML 5 Topic 2
HTML 5 Topic 2HTML 5 Topic 2
HTML 5 Topic 2Juvywen
 
Twitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive OverviewTwitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive OverviewMohamed Loey
 
HTML5 Topic 1
HTML5 Topic 1HTML5 Topic 1
HTML5 Topic 1Juvywen
 

Was ist angesagt? (19)

Css 2010
Css 2010Css 2010
Css 2010
 
CSS Comprehensive Overview
CSS Comprehensive OverviewCSS Comprehensive Overview
CSS Comprehensive Overview
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
 
Introduction to Web Design
Introduction to Web DesignIntroduction to Web Design
Introduction to Web Design
 
Session4
Session4Session4
Session4
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Hyper text markup Language
Hyper text markup LanguageHyper text markup Language
Hyper text markup Language
 
Vskills certified html designer Notes
Vskills certified html designer NotesVskills certified html designer Notes
Vskills certified html designer Notes
 
Practical file on web technology(html)
Practical file on web technology(html)Practical file on web technology(html)
Practical file on web technology(html)
 
Html viva questions
Html viva questionsHtml viva questions
Html viva questions
 
Html
HtmlHtml
Html
 
Web technology practical list
Web technology practical listWeb technology practical list
Web technology practical list
 
HTML + CSS Examples
HTML + CSS ExamplesHTML + CSS Examples
HTML + CSS Examples
 
HTML Basic, CSS Basic, JavaScript basic.
HTML Basic, CSS Basic, JavaScript basic.HTML Basic, CSS Basic, JavaScript basic.
HTML Basic, CSS Basic, JavaScript basic.
 
Creating WebPages using HTML
Creating WebPages using HTMLCreating WebPages using HTML
Creating WebPages using HTML
 
HTML 5 Topic 2
HTML 5 Topic 2HTML 5 Topic 2
HTML 5 Topic 2
 
Twitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive OverviewTwitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive Overview
 
Lecture1
Lecture1Lecture1
Lecture1
 
HTML5 Topic 1
HTML5 Topic 1HTML5 Topic 1
HTML5 Topic 1
 

Andere mochten auch

Zero pest solutions pvt ltd ...
Zero pest solutions pvt ltd ...Zero pest solutions pvt ltd ...
Zero pest solutions pvt ltd ...priya14mathur
 
A Cidade Dos Segredos
A Cidade Dos SegredosA Cidade Dos Segredos
A Cidade Dos Segredos34537123000
 
Global policy trend of HIV & NCD leveraging the HIV experience by Satoshi Ezoe
Global policy trend of HIV & NCD leveraging the HIV experience by Satoshi EzoeGlobal policy trend of HIV & NCD leveraging the HIV experience by Satoshi Ezoe
Global policy trend of HIV & NCD leveraging the HIV experience by Satoshi EzoeHidzuan Hashim
 
SPARK15: Architecting The Future of Energy & Sustainability
SPARK15: Architecting The Future of Energy & SustainabilitySPARK15: Architecting The Future of Energy & Sustainability
SPARK15: Architecting The Future of Energy & SustainabilityUrjanet
 
class-action-lit-study
class-action-lit-studyclass-action-lit-study
class-action-lit-studyWill McLennan
 
10.11648.j.sjph.20150305.31
10.11648.j.sjph.20150305.3110.11648.j.sjph.20150305.31
10.11648.j.sjph.20150305.31Ayalew Aklilu
 
Mystartingpointworkbook 150906122430-lva1-app6891
Mystartingpointworkbook 150906122430-lva1-app6891Mystartingpointworkbook 150906122430-lva1-app6891
Mystartingpointworkbook 150906122430-lva1-app6891ElyKing
 
indian astrolgy
indian astrolgyindian astrolgy
indian astrolgyMandy Bond
 
Presentation Bettie Higs
Presentation Bettie HigsPresentation Bettie Higs
Presentation Bettie Higszarmath
 
FFormato Único Hoja de Vida
FFormato Único Hoja de VidaFFormato Único Hoja de Vida
FFormato Único Hoja de VidaN/A
 
Presoners del mar prxp
Presoners del mar prxpPresoners del mar prxp
Presoners del mar prxpRoser Guiteras
 
Thèse Laureline Pouteau - Evolution des stratégies marketing des laboratoires...
Thèse Laureline Pouteau - Evolution des stratégies marketing des laboratoires...Thèse Laureline Pouteau - Evolution des stratégies marketing des laboratoires...
Thèse Laureline Pouteau - Evolution des stratégies marketing des laboratoires...Morgan REMOLEUR
 
SPARK16 Presentation: Urjanet Product Vision
SPARK16 Presentation: Urjanet Product VisionSPARK16 Presentation: Urjanet Product Vision
SPARK16 Presentation: Urjanet Product VisionUrjanet
 
Work in Progress Limits revisited
Work in Progress Limits revisitedWork in Progress Limits revisited
Work in Progress Limits revisitedDr. Arne Roock
 

Andere mochten auch (20)

Zero pest solutions pvt ltd ...
Zero pest solutions pvt ltd ...Zero pest solutions pvt ltd ...
Zero pest solutions pvt ltd ...
 
A Cidade Dos Segredos
A Cidade Dos SegredosA Cidade Dos Segredos
A Cidade Dos Segredos
 
Global policy trend of HIV & NCD leveraging the HIV experience by Satoshi Ezoe
Global policy trend of HIV & NCD leveraging the HIV experience by Satoshi EzoeGlobal policy trend of HIV & NCD leveraging the HIV experience by Satoshi Ezoe
Global policy trend of HIV & NCD leveraging the HIV experience by Satoshi Ezoe
 
SPARK15: Architecting The Future of Energy & Sustainability
SPARK15: Architecting The Future of Energy & SustainabilitySPARK15: Architecting The Future of Energy & Sustainability
SPARK15: Architecting The Future of Energy & Sustainability
 
class-action-lit-study
class-action-lit-studyclass-action-lit-study
class-action-lit-study
 
10.11648.j.sjph.20150305.31
10.11648.j.sjph.20150305.3110.11648.j.sjph.20150305.31
10.11648.j.sjph.20150305.31
 
Mystartingpointworkbook 150906122430-lva1-app6891
Mystartingpointworkbook 150906122430-lva1-app6891Mystartingpointworkbook 150906122430-lva1-app6891
Mystartingpointworkbook 150906122430-lva1-app6891
 
Saul bass
Saul bassSaul bass
Saul bass
 
CV Ruhshana Kamalie
CV Ruhshana KamalieCV Ruhshana Kamalie
CV Ruhshana Kamalie
 
Theaching basic skill
Theaching basic skillTheaching basic skill
Theaching basic skill
 
First Publication 9.6.15
First Publication 9.6.15First Publication 9.6.15
First Publication 9.6.15
 
3572
35723572
3572
 
Treatment sheet
Treatment sheetTreatment sheet
Treatment sheet
 
indian astrolgy
indian astrolgyindian astrolgy
indian astrolgy
 
Presentation Bettie Higs
Presentation Bettie HigsPresentation Bettie Higs
Presentation Bettie Higs
 
FFormato Único Hoja de Vida
FFormato Único Hoja de VidaFFormato Único Hoja de Vida
FFormato Único Hoja de Vida
 
Presoners del mar prxp
Presoners del mar prxpPresoners del mar prxp
Presoners del mar prxp
 
Thèse Laureline Pouteau - Evolution des stratégies marketing des laboratoires...
Thèse Laureline Pouteau - Evolution des stratégies marketing des laboratoires...Thèse Laureline Pouteau - Evolution des stratégies marketing des laboratoires...
Thèse Laureline Pouteau - Evolution des stratégies marketing des laboratoires...
 
SPARK16 Presentation: Urjanet Product Vision
SPARK16 Presentation: Urjanet Product VisionSPARK16 Presentation: Urjanet Product Vision
SPARK16 Presentation: Urjanet Product Vision
 
Work in Progress Limits revisited
Work in Progress Limits revisitedWork in Progress Limits revisited
Work in Progress Limits revisited
 

Ähnlich wie Vskills certified css designer Notes

Chapter 3 - CSS.pdf
Chapter 3 - CSS.pdfChapter 3 - CSS.pdf
Chapter 3 - CSS.pdfwubiederebe1
 
The CSS Handbook
The CSS HandbookThe CSS Handbook
The CSS Handbookjackchenvlo
 
intro_To_HTML_and__CSS_using_presentation.pptx
intro_To_HTML_and__CSS_using_presentation.pptxintro_To_HTML_and__CSS_using_presentation.pptx
intro_To_HTML_and__CSS_using_presentation.pptxAsrithaKorupolu
 
Teched Inetrgation ppt and lering in simple
Teched Inetrgation ppt  and lering in simpleTeched Inetrgation ppt  and lering in simple
Teched Inetrgation ppt and lering in simpleJagadishBabuParri
 
Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3DanWooster1
 
MYSQL DATABASE MYSQL DATABASE MYSQL DATABASECSS.pptx
MYSQL DATABASE MYSQL DATABASE MYSQL DATABASECSS.pptxMYSQL DATABASE MYSQL DATABASE MYSQL DATABASECSS.pptx
MYSQL DATABASE MYSQL DATABASE MYSQL DATABASECSS.pptxArjayBalberan1
 
Css training tutorial css3 &amp; css4 essentials
Css training tutorial css3 &amp; css4 essentialsCss training tutorial css3 &amp; css4 essentials
Css training tutorial css3 &amp; css4 essentialsQA TrainingHub
 
HTML to CSS Basics Exer 2.pptx
HTML to CSS Basics Exer 2.pptxHTML to CSS Basics Exer 2.pptx
HTML to CSS Basics Exer 2.pptxJJFajardo1
 
Web designing training in chandigarh
Web designing training in chandigarhWeb designing training in chandigarh
Web designing training in chandigarhSheetal Sharma
 
Organize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksOrganize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksAndolasoft Inc
 
Role of css in web design
Role of css in  web designRole of css in  web design
Role of css in web designPixelCrayons
 
New Css style
New Css styleNew Css style
New Css styleBUDNET
 

Ähnlich wie Vskills certified css designer Notes (20)

Chapter 3 - CSS.pdf
Chapter 3 - CSS.pdfChapter 3 - CSS.pdf
Chapter 3 - CSS.pdf
 
The CSS Handbook
The CSS HandbookThe CSS Handbook
The CSS Handbook
 
intro_To_HTML_and__CSS_using_presentation.pptx
intro_To_HTML_and__CSS_using_presentation.pptxintro_To_HTML_and__CSS_using_presentation.pptx
intro_To_HTML_and__CSS_using_presentation.pptx
 
Css introduction
Css   introductionCss   introduction
Css introduction
 
Teched Inetrgation ppt and lering in simple
Teched Inetrgation ppt  and lering in simpleTeched Inetrgation ppt  and lering in simple
Teched Inetrgation ppt and lering in simple
 
Higher Computing Science CSS
Higher Computing Science CSSHigher Computing Science CSS
Higher Computing Science CSS
 
Css
CssCss
Css
 
Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3
 
MYSQL DATABASE MYSQL DATABASE MYSQL DATABASECSS.pptx
MYSQL DATABASE MYSQL DATABASE MYSQL DATABASECSS.pptxMYSQL DATABASE MYSQL DATABASE MYSQL DATABASECSS.pptx
MYSQL DATABASE MYSQL DATABASE MYSQL DATABASECSS.pptx
 
Css training tutorial css3 &amp; css4 essentials
Css training tutorial css3 &amp; css4 essentialsCss training tutorial css3 &amp; css4 essentials
Css training tutorial css3 &amp; css4 essentials
 
David Weliver
David WeliverDavid Weliver
David Weliver
 
HTML to CSS Basics Exer 2.pptx
HTML to CSS Basics Exer 2.pptxHTML to CSS Basics Exer 2.pptx
HTML to CSS Basics Exer 2.pptx
 
Lecture-6.pptx
Lecture-6.pptxLecture-6.pptx
Lecture-6.pptx
 
Web designing training in chandigarh
Web designing training in chandigarhWeb designing training in chandigarh
Web designing training in chandigarh
 
Organize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksOrganize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS Tricks
 
N5 CSS
N5 CSSN5 CSS
N5 CSS
 
Role of css in web design
Role of css in  web designRole of css in  web design
Role of css in web design
 
HowTo_CSS
HowTo_CSSHowTo_CSS
HowTo_CSS
 
HowTo_CSS
HowTo_CSSHowTo_CSS
HowTo_CSS
 
New Css style
New Css styleNew Css style
New Css style
 

Mehr von Vskills

Vskills certified administrative support professional sample material
Vskills certified administrative support professional sample materialVskills certified administrative support professional sample material
Vskills certified administrative support professional sample materialVskills
 
vskills customer service professional sample material
vskills customer service professional sample materialvskills customer service professional sample material
vskills customer service professional sample materialVskills
 
Vskills certified operations manager sample material
Vskills certified operations manager sample materialVskills certified operations manager sample material
Vskills certified operations manager sample materialVskills
 
Vskills certified six sigma yellow belt sample material
Vskills certified six sigma yellow belt sample materialVskills certified six sigma yellow belt sample material
Vskills certified six sigma yellow belt sample materialVskills
 
Vskills production and operations management sample material
Vskills production and operations management sample materialVskills production and operations management sample material
Vskills production and operations management sample materialVskills
 
vskills leadership skills professional sample material
vskills leadership skills professional sample materialvskills leadership skills professional sample material
vskills leadership skills professional sample materialVskills
 
vskills facility management expert sample material
vskills facility management expert sample materialvskills facility management expert sample material
vskills facility management expert sample materialVskills
 
Vskills international trade and forex professional sample material
Vskills international trade and forex professional sample materialVskills international trade and forex professional sample material
Vskills international trade and forex professional sample materialVskills
 
Vskills production planning and control professional sample material
Vskills production planning and control professional sample materialVskills production planning and control professional sample material
Vskills production planning and control professional sample materialVskills
 
Vskills purchasing and material management professional sample material
Vskills purchasing and material management professional sample materialVskills purchasing and material management professional sample material
Vskills purchasing and material management professional sample materialVskills
 
Vskills manufacturing technology management professional sample material
Vskills manufacturing technology management professional sample materialVskills manufacturing technology management professional sample material
Vskills manufacturing technology management professional sample materialVskills
 
certificate in agile project management sample material
certificate in agile project management sample materialcertificate in agile project management sample material
certificate in agile project management sample materialVskills
 
Vskills angular js sample material
Vskills angular js sample materialVskills angular js sample material
Vskills angular js sample materialVskills
 
Vskills c++ developer sample material
Vskills c++ developer sample materialVskills c++ developer sample material
Vskills c++ developer sample materialVskills
 
Vskills c developer sample material
Vskills c developer sample materialVskills c developer sample material
Vskills c developer sample materialVskills
 
Vskills financial modelling professional sample material
Vskills financial modelling professional sample materialVskills financial modelling professional sample material
Vskills financial modelling professional sample materialVskills
 
Vskills basel iii professional sample material
Vskills basel iii professional sample materialVskills basel iii professional sample material
Vskills basel iii professional sample materialVskills
 
Vskills telecom management professional sample material
Vskills telecom management professional sample materialVskills telecom management professional sample material
Vskills telecom management professional sample materialVskills
 
Vskills retail management professional sample material
Vskills retail management professional sample materialVskills retail management professional sample material
Vskills retail management professional sample materialVskills
 
Vskills contract law analyst sample material
Vskills contract law analyst sample materialVskills contract law analyst sample material
Vskills contract law analyst sample materialVskills
 

Mehr von Vskills (20)

Vskills certified administrative support professional sample material
Vskills certified administrative support professional sample materialVskills certified administrative support professional sample material
Vskills certified administrative support professional sample material
 
vskills customer service professional sample material
vskills customer service professional sample materialvskills customer service professional sample material
vskills customer service professional sample material
 
Vskills certified operations manager sample material
Vskills certified operations manager sample materialVskills certified operations manager sample material
Vskills certified operations manager sample material
 
Vskills certified six sigma yellow belt sample material
Vskills certified six sigma yellow belt sample materialVskills certified six sigma yellow belt sample material
Vskills certified six sigma yellow belt sample material
 
Vskills production and operations management sample material
Vskills production and operations management sample materialVskills production and operations management sample material
Vskills production and operations management sample material
 
vskills leadership skills professional sample material
vskills leadership skills professional sample materialvskills leadership skills professional sample material
vskills leadership skills professional sample material
 
vskills facility management expert sample material
vskills facility management expert sample materialvskills facility management expert sample material
vskills facility management expert sample material
 
Vskills international trade and forex professional sample material
Vskills international trade and forex professional sample materialVskills international trade and forex professional sample material
Vskills international trade and forex professional sample material
 
Vskills production planning and control professional sample material
Vskills production planning and control professional sample materialVskills production planning and control professional sample material
Vskills production planning and control professional sample material
 
Vskills purchasing and material management professional sample material
Vskills purchasing and material management professional sample materialVskills purchasing and material management professional sample material
Vskills purchasing and material management professional sample material
 
Vskills manufacturing technology management professional sample material
Vskills manufacturing technology management professional sample materialVskills manufacturing technology management professional sample material
Vskills manufacturing technology management professional sample material
 
certificate in agile project management sample material
certificate in agile project management sample materialcertificate in agile project management sample material
certificate in agile project management sample material
 
Vskills angular js sample material
Vskills angular js sample materialVskills angular js sample material
Vskills angular js sample material
 
Vskills c++ developer sample material
Vskills c++ developer sample materialVskills c++ developer sample material
Vskills c++ developer sample material
 
Vskills c developer sample material
Vskills c developer sample materialVskills c developer sample material
Vskills c developer sample material
 
Vskills financial modelling professional sample material
Vskills financial modelling professional sample materialVskills financial modelling professional sample material
Vskills financial modelling professional sample material
 
Vskills basel iii professional sample material
Vskills basel iii professional sample materialVskills basel iii professional sample material
Vskills basel iii professional sample material
 
Vskills telecom management professional sample material
Vskills telecom management professional sample materialVskills telecom management professional sample material
Vskills telecom management professional sample material
 
Vskills retail management professional sample material
Vskills retail management professional sample materialVskills retail management professional sample material
Vskills retail management professional sample material
 
Vskills contract law analyst sample material
Vskills contract law analyst sample materialVskills contract law analyst sample material
Vskills contract law analyst sample material
 

Kürzlich hochgeladen

Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 

Kürzlich hochgeladen (20)

Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 

Vskills certified css designer Notes

  • 2. Certified CSS Designer www.vskills.in Page 7 1. CSS BASICS1. CSS BASICS1. CSS BASICS1. CSS BASICS 1.1 Introduction1.1 Introduction1.1 Introduction1.1 Introduction Cascading Style Sheets (CSS) is a language specifically made for illustrating the appearance of various parts of a web page. CSS gives option to control the text color, fonts style, inter- paragraph spacing, columns sizing and layout, background images or colors and many other visual effects. CSS is used to style web pages, developed in HTML or XHTML The major advantage of CSS is to customize the style of an entire website without changing each page individually. W3C laid out details for a style sheet language to separate the visual appearance of a web page from its content and in 1994, Cascading HTML Style Sheets was proposed. CHSS became CSS and in December 1996 the CSS level 1 Recommendation was published. Three more CSS specifications have been published by the W3C of which CSS 2 became a recommendation followed by CSS 2.1 and CSS 3 is an upcoming recommendation. 1.2 Why to use CSS1.2 Why to use CSS1.2 Why to use CSS1.2 Why to use CSS HTML and XHTML is the base for all web pages on internet. CSS prevents repurposing of HTML tags to get certain visual effects. CSS-driven web design makes writing HTML easier. The HTML-only approach requires a lot more code to achieve the same visual effects compared with CSS version. BackgroundBackgroundBackgroundBackground HTML was developed to structure information for easy comprehension like the <h1> tag indicates an important headline and the <h2> tag for a subheading of the <h1> tag. But soon HTML tags were used to control appearance rather than structure information like the <blockquote> tag. The <table> tag was used to create columns of text and accurately place pictures and text on a page. But sometimes nesting a table within a table within a table was used making it very difficult to comprehend and maintain. Hence, browser came out with new tags and attributes for making a page look better like <font> tag has specification for font color and typeface. Graphics were also used to achieve desired visual effects. With introduction of CSS by W3C, HTML is used to structure and organize the content and CSS to make that content visually appealing thus, separating presentation of content from the structure and organization of content. AdvantagesAdvantagesAdvantagesAdvantages Effort and Time ReductionEffort and Time ReductionEffort and Time ReductionEffort and Time Reduction: CSS substantially reduces the time and effort to compose not only a single document but for the whole website.
  • 3. Certified CSS Designer www.vskills.in Page 8 Bandwidth and Space ReductionBandwidth and Space ReductionBandwidth and Space ReductionBandwidth and Space Reduction: CSS is more versatile than HTML styling tags as its cascading property reduces the disk space for styling a website and also the bandwidth required. Centralized UpdateCentralized UpdateCentralized UpdateCentralized Update - Presentation and visual effects of a website can be centralized by using CSS. IndependentIndependentIndependentIndependent: CSS can be written independently of HTML. Multiple Device SupportMultiple Device SupportMultiple Device SupportMultiple Device Support: CSS allows content to be optimized for different devices like printer, mobile devices, screen, etc using the same HTML document. CachingCachingCachingCaching: CSS downloaded by browsers are cached hence, CSS file is downloaded only once fast performance of website. Advantages are illustrated as 1.31.31.31.3 CSSCSSCSSCSS EditorsEditorsEditorsEditors CSS can be written with a plain text editor like notepad but advanced text editors do useful things like code coloring or syntax highlighting, automatically completing the code and some editors are Notepad++Notepad++Notepad++Notepad++: It is open source editor which is free. Crimson EditorCrimson EditorCrimson EditorCrimson Editor: It is also a free editor. HTMLHTMLHTMLHTML----kitkitkitkit: It is also a free editor. Adobe DreAdobe DreAdobe DreAdobe Dreamweaveamweaveamweaveamweaver: It is commercial paid software. 1.41.41.41.4 AAAA CSS ExamCSS ExamCSS ExamCSS Exampleplepleple This example introduces CSS and for which the HTML document is needed is given first and then followed by the CSS file. Webpage.htmWebpage.htmWebpage.htmWebpage.htm: In your text editor of choice, enter the following markup
  • 4. Certified CSS Designer www.vskills.in Page 9 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1-strict.dtd"> <html lang=”en”> <head> <title>Vskills Example </title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <h1>Vskills Certification </h1> <div class="list1"> <h2>CSS Designer</h2> <p>CSS designer certification is used to impart CSS certification.</p> </div> <div class="list1"> <h2>HTML Certification</h2> <p>HTML certification is used to impart HTML certification.</p> </div> </body> </html> Style.cssStyle.cssStyle.cssStyle.css: body { width: 650px; margin: 0 auto; background: #FFF; font: 12px sans-serif; } h1 { font-size: 20px; } h2 { font-size: 16px; margin-top: 0; } .list1 { margin: 10px 10px; padding: 20px 20px; border: 1px solid #F00; }
  • 5. Certified CSS Designer www.vskills.in Page 10 OutputOutputOutputOutput: As the figure shows that CSS can be used to stylize the various HTML elements on a web page thus simplifying the process of styling the same. 1.5 Custom CSS1.5 Custom CSS1.5 Custom CSS1.5 Custom CSS Web browsers in which CSS works, is not same as different browsers are installed in different computers and each has different versions of same browser as well. Browser and their respective versions support different levels of CSS styling and for achieving the visual effects of CSS across all of them, work-around are used to get over the patchy support. Different browsers are BrowserBrowserBrowserBrowser Rendering EngineRendering EngineRendering EngineRendering Engine CSS 2.CSS 2.CSS 2.CSS 2.1 support1 support1 support1 support Google Chrome WebKit Full Mozilla Firefox Gecko Full Apple Safari WebKit Full Internet Explorer Trident Full from IE 7 Opera Presto Full 1.61.61.61.6 Cross Browser TestingCross Browser TestingCross Browser TestingCross Browser Testing There are a lot of web browsers for different operating systems and cross browser testing on some is discussed WindowsWindowsWindowsWindows- It can only run one version of IE hence can test only in installed version like IE 6, IE 7 or IE 8 but IETester program can display a web page for different versions like in IE 5.5, IE 6, IE 7 and IE 8. Install other browsers like Firefox, Safari, Opera or Chrome. MacMacMacMac - Safari web browser is provided but for other web browser use a virtualization software like VMWare. Many cross-browser testing services websites are on internet for doing this task.
  • 6. Certified CSS Designer www.vskills.in Page 11 1.1.1.1.7777 IncludIncludIncludIncludinginginging CSSCSSCSSCSS CSS can be included in a web page in following four ways Embedded Style SheetsEmbedded Style SheetsEmbedded Style SheetsEmbedded Style Sheets - Embedded style sheets are included between <style> and </style> tags in an web page’s head section as <style type=”text/css”> body { font: 12px sans-serif; } </ style > External Style SheetsExternal Style SheetsExternal Style SheetsExternal Style Sheets – In it CSS is in a separate document which is linked to an web page by the <link> element with “rel” attribute having “stylesheet” as its value, “type” attribute having ”text/css” as its value and “href “ attribute having the path to CSS file. It is used as <link rel=”stylesheet” type=”text/css” href=”style.css”> rel="stylesheet" tells the link type —in this case, a link to a style sheet. type="text/css" lets web browser know the type of data to get—a text file, having CSS. href points to the location of the external CSS file and has the value of a URL similar to the src attribute in an <image> tag. Import RuleImport RuleImport RuleImport Rule – It is similar to external style sheet but instead of <link> element, it uses “@import” with “url” attribute storing the path to the CSS file. It is used as <style type=”text/css”> @import url(style.css); </ style > It can attach external style sheets to an external style sheet but the <link> tag can’t. Direct StyleDirect StyleDirect StyleDirect Style - Inline styles with the style attribute are used to apply CSS rules directly to an element in an web as <body style=”font: 12px sans-serif;”> What to chooseWhat to chooseWhat to chooseWhat to choose – External style sheets are preferred because it collects all style information in a single file that is link to a web page with just a single line of code. You can attach the same external style sheet to every page in your website, providing a unified design. It also makes a complete site makeover as easy as editing a single text file. It also help web pages load faster as no byte-hogging HTML tables or <font> tags or internal CSS style code is used also, it is stored in cache or temporary space on computer for quick and repeated access.
  • 7. Certified CSS Designer www.vskills.in Page 12 Internal CSS usage is explained in the figure 1.81.81.81.8 ValidatingValidatingValidatingValidating CSSCSSCSSCSS CSS can be validated similar to HTML by CSS validator tool (http://jigsaw.w3.org/css-validator/) provided by W3C by typing the URL of a web page (or the address to an external CSS file), or uploading a CSS file or copy and pasting CSS code into a web form and submit it for validation. Web browsers also have built-in error checking tools for examining CSS like in Mozilla Firefox click Error Console option in Tools menu to open CSS errors. It is shown in the figure.
  • 8. Certified CSS Designer www.vskills.in Page 13 Self Assessment QSelf Assessment QSelf Assessment QSelf Assessment Questionsuestionsuestionsuestions Q.1 CSS is used for A. Content Development B. Content tagging C. Content Styling D. None Q.2 Only external CSS files can be used for styling a web page A. True B. False C. Can not say D. None Q.3 CSS should be validated A. True B. False C. Can not say D. None AnswersAnswersAnswersAnswers :::: 1-C, 2-B,3-A