SlideShare a Scribd company logo
Font 
322432 Web Design Technology 
By Yaowaluck Promdee, Sumonta Kasemvilas 
CSS & HTML 
322432-1/2014
Index 
• Unit Style Sheet 
• CSS - Fonts 
• Example 
• Assignment 
322432-1/2014
Unit Style Sheet 
Relative Length 
• em – font size of element 
• ex- height of element’s font 
• percent- consists of a number 
immediately followed by percent 
sign ‘%’ 
322432-1/2014
Unit Style Sheet (Cont.) 
Absolute Length 
• in (inches; 1in=2.54cm =72pt =6pc) 
Ex. 2in, 1.5in 
• cm (centimeters; 1cm=10mm) Ex. 2cm, 1.11cm 
• mm (millimeters) Ex. 50mm, 0.8mm 
• pt (points; 1pt=1/72in, 10pt = 12px) Ex.12pt, 20pt 
• pc (picas; 1pc=12pt) Ex. 1pc, 2pc 
• pixel (px) : pixel 1px is equal to 1/96th of 1in 
322432-1/2014
322432-1/2014 
Example 
h1 { line-height: 1.2em } 
h1 { font-size: 1.2em } 
h1 { margin: 0.5in } /* inches */ 
h2 { line-height: 3cm } /* centimeters */ 
h3 { word-spacing: 4mm } /* millimeters */ 
h4 { font-size: 12pt } /* points */ 
h4 { font-size: 1pc } /* picas */ 
p { font-size: 12px } /* px */
322432-1/2014
CSS-Font 
Property Description Values 
font-family Specifies the font family 
322432-1/2014 
for text 
Ex. Arial, Helvetica, 
sans-serif 
font-size Specifies the font size of 
text 
xx-small, x-small, small, 
medium, large, x-large, 
xx-large, smaller, larger, 
18px, 70%, 150%
CSS-Font 
Property Description Values 
font-style The font-style property is mostly 
used to specify italic text. 
322432-1/2014 
normal 
italic 
oblique 
font-variant In a small-caps font, all 
lowercase letters are converted 
to uppercase letters. 
normal 
Small-Caps 
font-weight The font-weight property sets 
how thick or thin characters in 
text should be displayed. 
normal 
bold 
bolder 
lighter 
100 
200
Example1 
322432-1/2014 
p { 
font-family:Arial; 
font-size:16pt; 
color:green 
} 
p.ex { font:15px sans-serif red; 
/*not specified */ }
Example2 
322432-1/2014 
How you code? 
<p style="font-weight:bold">Love me Love my dog</p> 
<p style="font: normal small-caps bold 16px sans-serif, Arial; 
color:#FF0033">Love me Love my dog</p>
Difference Between Serif and Sans-serif Fonts 
322432-1/2014
Text 
Property Description Values 
color The color property is used to set 
the color of the text 
322432-1/2014 
- a HEX value - like 
"#ff0000" 
- an RGB value - like 
"rgb(255,0,0)" 
- a color name - like "red" 
direction The direction property specifies the 
text direction/writing direction 
direction: ltr|rtl|initial|inherit; 
line-height The line-height property specifies 
the line height. 
line-height: 
normal|number|length|initial| 
inherit; 
letter-spacing The letter-spacing property 
increases or decreases the space 
between characters in a text. 
letter-spacing: 
normal|length|initial|inherit; 
text-align The text-align property specifies the 
horizontal alignment of text in an 
element. 
text-align: 
left|right|center|justify|initial|i 
nherit; 
http://www.w3schools.com/
Text 
Property Description Values 
text-decoration The text-decoration property 
specifies the decoration added to 
text. 
322432-1/2014 
text-decoration: 
none|underline| overline| 
line-through|initial|inherit; 
text-indent The text-indent property specifies 
the indentation of the first line in a 
text-block. 
text-indent: length |initial 
|inherit; 
text-transform The text-transform property 
controls the capitalization of text 
None | capitalize | 
uppercase | lowercase | 
initial | inherit 
white-space The white-space property 
specifies how white-space inside 
an element is handled. 
Normal | nowrap | pre | pre-line 
| pre-wrap | initial | 
inherit 
word-spacing The word-spacing property 
increases or decreases the white 
space between words. 
word-spacing: normal | 
length | initial | inherit 
http://www.w3schools.com/
Example 
<html> 
<head> 
<style type="text/css"> 
.p1 { 
color:#FF0033; 
line-height:18pt; 
letter-spacing:0.05cm; 
text-decoration:overline; 
text-indent:0.5in; 
text-transform:capitalize; 
white-space:normal; 
word-spacing:0.5em; 
} 
</style> 
</head> 
<body> 
<p class="p1">good moring teacher, how are you today?</p> 
</body> 
</html>
Lab#6 font css html
Example
Assignment#6 Fonts 
Create a Web page to present “CSS-Font design” 
from information provided using 
CSS font and text 
“CSS-Font design” 
รูปแบบการส่งงาน 
Grade will be based on your CSS technique and look and 
feel of the Web page. 
**กรณีมีรูปภาพหรือกราฟิกอื่นให้ใส่มาใน folder งานด้วย โดยไม่ต้อง zip ไม่งัน้รูปภาพหรือกราฟฟิกจะ 
ไม่แสดง**

More Related Content

Similar to Lab#6 font css html (20)

CSS Font & Text style
CSS Font & Text style CSS Font & Text style
CSS Font & Text style
Yaowaluck Promdee
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3
Seble Nigussie
 
Web Engineering - Introduction to CSS
Web Engineering - Introduction to CSSWeb Engineering - Introduction to CSS
Web Engineering - Introduction to CSS
Nosheen Qamar
 
IT2255 Web Essentials - Unit II Web Designing
IT2255 Web Essentials - Unit II  Web DesigningIT2255 Web Essentials - Unit II  Web Designing
IT2255 Web Essentials - Unit II Web Designing
pkaviya
 
Cascading Style Sheets By Mukesh
Cascading Style Sheets By MukeshCascading Style Sheets By Mukesh
Cascading Style Sheets By Mukesh
Mukesh Kumar
 
Web Design Course: CSS lecture 3
Web Design Course: CSS lecture 3Web Design Course: CSS lecture 3
Web Design Course: CSS lecture 3
Gheyath M. Othman
 
Css
CssCss
Css
Er. Nawaraj Bhandari
 
Web Programming-css.pptx
Web Programming-css.pptxWeb Programming-css.pptx
Web Programming-css.pptx
MarwaAnany1
 
HTML Text formatting tags
HTML Text formatting tagsHTML Text formatting tags
HTML Text formatting tags
Himanshu Pathak
 
Web Dev Workshop at GDG on Campus:MGMCOE
Web Dev Workshop at GDG on Campus:MGMCOEWeb Dev Workshop at GDG on Campus:MGMCOE
Web Dev Workshop at GDG on Campus:MGMCOE
Kashish Aswani
 
ch-hguygureehuvnvdfduyertiuhrnhduuyfjh3.pdf
ch-hguygureehuvnvdfduyertiuhrnhduuyfjh3.pdfch-hguygureehuvnvdfduyertiuhrnhduuyfjh3.pdf
ch-hguygureehuvnvdfduyertiuhrnhduuyfjh3.pdf
kasutaye192
 
Kick start @ css
Kick start @ cssKick start @ css
Kick start @ css
Umesh Agarwal
 
CSS3 basics for beginners - Imrokraft
CSS3 basics for beginners - ImrokraftCSS3 basics for beginners - Imrokraft
CSS3 basics for beginners - Imrokraft
imrokraft
 
CSS.pptx
CSS.pptxCSS.pptx
CSS.pptx
PushpaLatha551681
 
Unit 2 Internet and web technology CSS report
Unit 2 Internet and web technology CSS reportUnit 2 Internet and web technology CSS report
Unit 2 Internet and web technology CSS report
ajaysahusistec
 
Css Complete Notes
Css Complete NotesCss Complete Notes
Css Complete Notes
EPAM Systems
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Larry King
 
Css
CssCss
Css
actacademy
 
Css
CssCss
Css
actacademy
 
css.pdf
css.pdfcss.pdf
css.pdf
dhruvsharma8716
 
Web Engineering - Introduction to CSS
Web Engineering - Introduction to CSSWeb Engineering - Introduction to CSS
Web Engineering - Introduction to CSS
Nosheen Qamar
 
IT2255 Web Essentials - Unit II Web Designing
IT2255 Web Essentials - Unit II  Web DesigningIT2255 Web Essentials - Unit II  Web Designing
IT2255 Web Essentials - Unit II Web Designing
pkaviya
 
Cascading Style Sheets By Mukesh
Cascading Style Sheets By MukeshCascading Style Sheets By Mukesh
Cascading Style Sheets By Mukesh
Mukesh Kumar
 
Web Design Course: CSS lecture 3
Web Design Course: CSS lecture 3Web Design Course: CSS lecture 3
Web Design Course: CSS lecture 3
Gheyath M. Othman
 
Web Programming-css.pptx
Web Programming-css.pptxWeb Programming-css.pptx
Web Programming-css.pptx
MarwaAnany1
 
HTML Text formatting tags
HTML Text formatting tagsHTML Text formatting tags
HTML Text formatting tags
Himanshu Pathak
 
Web Dev Workshop at GDG on Campus:MGMCOE
Web Dev Workshop at GDG on Campus:MGMCOEWeb Dev Workshop at GDG on Campus:MGMCOE
Web Dev Workshop at GDG on Campus:MGMCOE
Kashish Aswani
 
ch-hguygureehuvnvdfduyertiuhrnhduuyfjh3.pdf
ch-hguygureehuvnvdfduyertiuhrnhduuyfjh3.pdfch-hguygureehuvnvdfduyertiuhrnhduuyfjh3.pdf
ch-hguygureehuvnvdfduyertiuhrnhduuyfjh3.pdf
kasutaye192
 
CSS3 basics for beginners - Imrokraft
CSS3 basics for beginners - ImrokraftCSS3 basics for beginners - Imrokraft
CSS3 basics for beginners - Imrokraft
imrokraft
 
Unit 2 Internet and web technology CSS report
Unit 2 Internet and web technology CSS reportUnit 2 Internet and web technology CSS report
Unit 2 Internet and web technology CSS report
ajaysahusistec
 
Css Complete Notes
Css Complete NotesCss Complete Notes
Css Complete Notes
EPAM Systems
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Larry King
 

More from Yaowaluck Promdee (20)

A basic of UX for beginner
A basic of UX for beginnerA basic of UX for beginner
A basic of UX for beginner
Yaowaluck Promdee
 
TCAS 2563
TCAS 2563TCAS 2563
TCAS 2563
Yaowaluck Promdee
 
Portfolio design
Portfolio designPortfolio design
Portfolio design
Yaowaluck Promdee
 
Concept to creation story and storyboard
Concept to creation  story and storyboard Concept to creation  story and storyboard
Concept to creation story and storyboard
Yaowaluck Promdee
 
Observation and interviewing
Observation and interviewingObservation and interviewing
Observation and interviewing
Yaowaluck Promdee
 
Requirement gathering-and-lean-canvas
Requirement gathering-and-lean-canvasRequirement gathering-and-lean-canvas
Requirement gathering-and-lean-canvas
Yaowaluck Promdee
 
Good bad design
Good bad designGood bad design
Good bad design
Yaowaluck Promdee
 
Bootstrap Framework
Bootstrap Framework Bootstrap Framework
Bootstrap Framework
Yaowaluck Promdee
 
Tables and forms with HTML, CSS
Tables and forms with HTML, CSS  Tables and forms with HTML, CSS
Tables and forms with HTML, CSS
Yaowaluck Promdee
 
Navigation and Link
Navigation and LinkNavigation and Link
Navigation and Link
Yaowaluck Promdee
 
Graphic, Color and tools
Graphic, Color and toolsGraphic, Color and tools
Graphic, Color and tools
Yaowaluck Promdee
 
Page layouts flexible and fixed layout with CSS
Page layouts flexible and fixed layout with CSSPage layouts flexible and fixed layout with CSS
Page layouts flexible and fixed layout with CSS
Yaowaluck Promdee
 
CSS Boc model
CSS Boc model CSS Boc model
CSS Boc model
Yaowaluck Promdee
 
Style and Selector Part2
Style and Selector Part2Style and Selector Part2
Style and Selector Part2
Yaowaluck Promdee
 
Style and Selector
Style and SelectorStyle and Selector
Style and Selector
Yaowaluck Promdee
 
Design sitemap
Design sitemapDesign sitemap
Design sitemap
Yaowaluck Promdee
 
Good/Bad Web Design
Good/Bad Web DesignGood/Bad Web Design
Good/Bad Web Design
Yaowaluck Promdee
 
HTML 5
HTML 5HTML 5
HTML 5
Yaowaluck Promdee
 
Overview HTML, HTML5 and Validations
Overview HTML, HTML5 and Validations Overview HTML, HTML5 and Validations
Overview HTML, HTML5 and Validations
Yaowaluck Promdee
 
Web Interface
Web InterfaceWeb Interface
Web Interface
Yaowaluck Promdee
 

Recently uploaded (20)

Presentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem KayaPresentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem Kaya
MIPLM
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-26-2025.pptx
YSPH VMOC Special Report - Measles Outbreak  Southwest US 4-26-2025.pptxYSPH VMOC Special Report - Measles Outbreak  Southwest US 4-26-2025.pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-26-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
APPLIED PSYCHOLOGY IN NURSING (UNIT - VIII TO XVII)
APPLIED PSYCHOLOGY IN NURSING (UNIT - VIII TO XVII)APPLIED PSYCHOLOGY IN NURSING (UNIT - VIII TO XVII)
APPLIED PSYCHOLOGY IN NURSING (UNIT - VIII TO XVII)
SMRITIKANA GORAI
 
How to Open a Wizard When Clicking on the Kanban Tile in Odoo 18
How to Open a Wizard When Clicking on the Kanban Tile in Odoo 18How to Open a Wizard When Clicking on the Kanban Tile in Odoo 18
How to Open a Wizard When Clicking on the Kanban Tile in Odoo 18
Celine George
 
Burke "Accessibility Essentials: A 2025 NISO Training Series, Session Four, D...
Burke "Accessibility Essentials: A 2025 NISO Training Series, Session Four, D...Burke "Accessibility Essentials: A 2025 NISO Training Series, Session Four, D...
Burke "Accessibility Essentials: A 2025 NISO Training Series, Session Four, D...
National Information Standards Organization (NISO)
 
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
larencebapu132
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
How to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 WebsiteHow to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 Website
Celine George
 
SPRING FESTIVITIES - UK AND USA -
SPRING FESTIVITIES - UK AND USA            -SPRING FESTIVITIES - UK AND USA            -
SPRING FESTIVITIES - UK AND USA -
Colégio Santa Teresinha
 
Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
LDMMIA Reiki Yoga Session 2 For Money Chi
LDMMIA Reiki Yoga Session 2 For Money ChiLDMMIA Reiki Yoga Session 2 For Money Chi
LDMMIA Reiki Yoga Session 2 For Money Chi
LDM Mia eStudios
 
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingHow to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
Celine George
 
p1.pdf فن الخدمة الجزء الاول د هاني عاطف و د عايده فايز
p1.pdf فن الخدمة الجزء الاول د هاني عاطف و د عايده فايزp1.pdf فن الخدمة الجزء الاول د هاني عاطف و د عايده فايز
p1.pdf فن الخدمة الجزء الاول د هاني عاطف و د عايده فايز
HanyAtef10
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptxYSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
Quality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdfQuality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdf
Dr. Bindiya Chauhan
 
Timber Pitch Roof Construction Measurement-2024.pptx
Timber Pitch Roof Construction Measurement-2024.pptxTimber Pitch Roof Construction Measurement-2024.pptx
Timber Pitch Roof Construction Measurement-2024.pptx
Tantish QS, UTM
 
Conrad "Accessibility Essentials: A 2025 NISO Training Series, Session 4, Int...
Conrad "Accessibility Essentials: A 2025 NISO Training Series, Session 4, Int...Conrad "Accessibility Essentials: A 2025 NISO Training Series, Session 4, Int...
Conrad "Accessibility Essentials: A 2025 NISO Training Series, Session 4, Int...
National Information Standards Organization (NISO)
 
Liu "Liu "Accessibility Essentials: A 2025 NISO Training Series, Session 4, 8...
Liu "Liu "Accessibility Essentials: A 2025 NISO Training Series, Session 4, 8...Liu "Liu "Accessibility Essentials: A 2025 NISO Training Series, Session 4, 8...
Liu "Liu "Accessibility Essentials: A 2025 NISO Training Series, Session 4, 8...
National Information Standards Organization (NISO)
 
Presentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem KayaPresentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem Kaya
MIPLM
 
APPLIED PSYCHOLOGY IN NURSING (UNIT - VIII TO XVII)
APPLIED PSYCHOLOGY IN NURSING (UNIT - VIII TO XVII)APPLIED PSYCHOLOGY IN NURSING (UNIT - VIII TO XVII)
APPLIED PSYCHOLOGY IN NURSING (UNIT - VIII TO XVII)
SMRITIKANA GORAI
 
How to Open a Wizard When Clicking on the Kanban Tile in Odoo 18
How to Open a Wizard When Clicking on the Kanban Tile in Odoo 18How to Open a Wizard When Clicking on the Kanban Tile in Odoo 18
How to Open a Wizard When Clicking on the Kanban Tile in Odoo 18
Celine George
 
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
larencebapu132
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
How to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 WebsiteHow to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 Website
Celine George
 
Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
LDMMIA Reiki Yoga Session 2 For Money Chi
LDMMIA Reiki Yoga Session 2 For Money ChiLDMMIA Reiki Yoga Session 2 For Money Chi
LDMMIA Reiki Yoga Session 2 For Money Chi
LDM Mia eStudios
 
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingHow to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
Celine George
 
p1.pdf فن الخدمة الجزء الاول د هاني عاطف و د عايده فايز
p1.pdf فن الخدمة الجزء الاول د هاني عاطف و د عايده فايزp1.pdf فن الخدمة الجزء الاول د هاني عاطف و د عايده فايز
p1.pdf فن الخدمة الجزء الاول د هاني عاطف و د عايده فايز
HanyAtef10
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
Quality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdfQuality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdf
Dr. Bindiya Chauhan
 
Timber Pitch Roof Construction Measurement-2024.pptx
Timber Pitch Roof Construction Measurement-2024.pptxTimber Pitch Roof Construction Measurement-2024.pptx
Timber Pitch Roof Construction Measurement-2024.pptx
Tantish QS, UTM
 

Lab#6 font css html

  • 1. Font 322432 Web Design Technology By Yaowaluck Promdee, Sumonta Kasemvilas CSS & HTML 322432-1/2014
  • 2. Index • Unit Style Sheet • CSS - Fonts • Example • Assignment 322432-1/2014
  • 3. Unit Style Sheet Relative Length • em – font size of element • ex- height of element’s font • percent- consists of a number immediately followed by percent sign ‘%’ 322432-1/2014
  • 4. Unit Style Sheet (Cont.) Absolute Length • in (inches; 1in=2.54cm =72pt =6pc) Ex. 2in, 1.5in • cm (centimeters; 1cm=10mm) Ex. 2cm, 1.11cm • mm (millimeters) Ex. 50mm, 0.8mm • pt (points; 1pt=1/72in, 10pt = 12px) Ex.12pt, 20pt • pc (picas; 1pc=12pt) Ex. 1pc, 2pc • pixel (px) : pixel 1px is equal to 1/96th of 1in 322432-1/2014
  • 5. 322432-1/2014 Example h1 { line-height: 1.2em } h1 { font-size: 1.2em } h1 { margin: 0.5in } /* inches */ h2 { line-height: 3cm } /* centimeters */ h3 { word-spacing: 4mm } /* millimeters */ h4 { font-size: 12pt } /* points */ h4 { font-size: 1pc } /* picas */ p { font-size: 12px } /* px */
  • 7. CSS-Font Property Description Values font-family Specifies the font family 322432-1/2014 for text Ex. Arial, Helvetica, sans-serif font-size Specifies the font size of text xx-small, x-small, small, medium, large, x-large, xx-large, smaller, larger, 18px, 70%, 150%
  • 8. CSS-Font Property Description Values font-style The font-style property is mostly used to specify italic text. 322432-1/2014 normal italic oblique font-variant In a small-caps font, all lowercase letters are converted to uppercase letters. normal Small-Caps font-weight The font-weight property sets how thick or thin characters in text should be displayed. normal bold bolder lighter 100 200
  • 9. Example1 322432-1/2014 p { font-family:Arial; font-size:16pt; color:green } p.ex { font:15px sans-serif red; /*not specified */ }
  • 10. Example2 322432-1/2014 How you code? <p style="font-weight:bold">Love me Love my dog</p> <p style="font: normal small-caps bold 16px sans-serif, Arial; color:#FF0033">Love me Love my dog</p>
  • 11. Difference Between Serif and Sans-serif Fonts 322432-1/2014
  • 12. Text Property Description Values color The color property is used to set the color of the text 322432-1/2014 - a HEX value - like "#ff0000" - an RGB value - like "rgb(255,0,0)" - a color name - like "red" direction The direction property specifies the text direction/writing direction direction: ltr|rtl|initial|inherit; line-height The line-height property specifies the line height. line-height: normal|number|length|initial| inherit; letter-spacing The letter-spacing property increases or decreases the space between characters in a text. letter-spacing: normal|length|initial|inherit; text-align The text-align property specifies the horizontal alignment of text in an element. text-align: left|right|center|justify|initial|i nherit; http://www.w3schools.com/
  • 13. Text Property Description Values text-decoration The text-decoration property specifies the decoration added to text. 322432-1/2014 text-decoration: none|underline| overline| line-through|initial|inherit; text-indent The text-indent property specifies the indentation of the first line in a text-block. text-indent: length |initial |inherit; text-transform The text-transform property controls the capitalization of text None | capitalize | uppercase | lowercase | initial | inherit white-space The white-space property specifies how white-space inside an element is handled. Normal | nowrap | pre | pre-line | pre-wrap | initial | inherit word-spacing The word-spacing property increases or decreases the white space between words. word-spacing: normal | length | initial | inherit http://www.w3schools.com/
  • 14. Example <html> <head> <style type="text/css"> .p1 { color:#FF0033; line-height:18pt; letter-spacing:0.05cm; text-decoration:overline; text-indent:0.5in; text-transform:capitalize; white-space:normal; word-spacing:0.5em; } </style> </head> <body> <p class="p1">good moring teacher, how are you today?</p> </body> </html>
  • 17. Assignment#6 Fonts Create a Web page to present “CSS-Font design” from information provided using CSS font and text “CSS-Font design” รูปแบบการส่งงาน Grade will be based on your CSS technique and look and feel of the Web page. **กรณีมีรูปภาพหรือกราฟิกอื่นให้ใส่มาใน folder งานด้วย โดยไม่ต้อง zip ไม่งัน้รูปภาพหรือกราฟฟิกจะ ไม่แสดง**

Editor's Notes

  • #6: h1 { line-height: 1.2em } means that the line height of h1 elements will be 20% greater than the font size of h1 element. On the other hand: h1 { font-size: 1.2em } means that the font size of h1 elements will be 20% greater than the computed font size inherited by h1 elements.
  • #9: This property has three values: normal - The text is shown normally italic - The text is shown in italics oblique - The text is "leaning" (oblique is very similar to italic, but less supported)
  • #13: Normal - A normal line height. This is default Number - A number that will be multiplied with the current font size to set the line height Length - A fixed line height in px, pt, cm, etc. % - A line height in percent of the current font size Initial - Sets this property to its default value. Inherit - Inherits this property from its parent element.
  • #18: จากเนื้อหาที่ให้มา ให้นักศึกษา นำเนื้อหาไปจัดวางออกแบบโดยใช้ CSS Font text ในการจัดรูปแบบการนำเสนอ เนื้อหาที่ยกมาให้