SlideShare uma empresa Scribd logo
1 de 8
Baixar para ler offline
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

Mais conteúdo relacionado

Mais procurados

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
 

Mais procurados (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
 

Destaque

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
 

Destaque (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
 

Semelhante a 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
 
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
 
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
 
Unit iii css and javascript 1
Unit iii css and javascript 1Unit iii css and javascript 1
Unit iii css and javascript 1Jesus Obenita Jr.
 

Semelhante a 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
 
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
 
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
 
Roadmap 01
Roadmap 01Roadmap 01
Roadmap 01
 
Unit iii css and javascript 1
Unit iii css and javascript 1Unit iii css and javascript 1
Unit iii css and javascript 1
 

Mais de 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
 

Mais de 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
 

Último

Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxShobhayan Kirtania
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...Pooja Nehwal
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 

Último (20)

Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptx
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 

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