ATLAS 2200 - WEB Web Typography.

Slides:



Advertisements
Similar presentations
Typography 101 Using Typography to Enhance Content.
Advertisements

WEB PAGES: CREATING AND MAINTAINING ** Frank Romanelli Instructor: Wednesday: 10:15 -11:15 Week 3.
Font Usage on the Web. Used to be true that … Normally end users can only see the fonts that are already installed on their computers. Normally end users.
Cascading Style Sheets By: Valerie Kuna. What are Cascading Style Sheets? Cascading Style Sheets (CSS) are a standard for specifying the presentation.
More Information on Graphic Design & Color: A few pointers for your websites & other e- publications Dr. Jennifer Bowie.
Week 7 Web Typography. 2 Understanding Type Design Principles.
Typography Basic terminology/concepts
Chapter Concepts Discuss Fonts Understand Fonts
Part 3: Design Chapter 8: Work Reengineering and Conceptual Design Chapter 9: Design Guidance and Design Rationale Chapter 10: Interaction Design Chapter.
The Use of Typography in Print and Electronically. [typography] “exists to honour content” Robert Bringhurst, The Elements of Typographical Style.
Cascading Style Sheet (CSS) Instructor: Dr. Fang (Daisy) Tang
WEB PAGES: CREATING AND MAINTAINING ** Tom Keane & Mayis SeapanInstructors: HTML Tags to format your text.
Typography Web Design Professor Frank. Characteristics of Type on the Web Magazine/book typography – 1200 dpi Computer screens – 85 ppi (maximum)
Font Families By: Jonathan Bird. What is a font? First, what is a font? A font is a grouping of the same type and style of characters, often in the same.
Typography and Space for Web Design Important Issues From Web Style Guide.
Web Design – Sec 4-6 and 4-7 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
Typography is the strategic use of type to create texture, hierarchy, organization, and clear communication.
Unit 4 – Multimedia Element: Text
Typography 2.01 Investigate typefaces and fonts..
Art 368 WEB Design 1 Spring 2002 Type Two basic families:  Serif and Sans Serif Parts of all type Ascenders, descenders, baseline, etc. Leading= linespacing/paragraph.
Chapter 7 Web Typography Principles of Web Design, 4 th Edition.
Principles of Web Design 6 th Edition Chapter 5 – Web Typography.
Font Families by Anthony Asay. Font Family ●Font family or font face is the typeface that is applied to the text by a web browser. ●There are a lot of.
Typography.  Introduction to Typography  Font Collections ▪ Serif ▪ They have small strokes at the end of the character strokes ▪ Ex: Times New Roman,
Text and Fonts in CSS. Customizing fonts In CSS, fonts are divided into “font families” Only certain fonts are commonly installed on most computers Therefore.
Basics of Web Design Chapter 6 More CSS Basics Key Concepts.
Typography The Science of Text. Fonts Style of type How many fonts in a document? Conservative--one font Typical--two fonts Use a third for emphasis.
Headings and Text What makes headings stand out?.
What are we interested in? 1. Understand Design 0 2. Digital Image design 3 3. Time-based media Webpage design 2 1.
Typography A Key Element in Design A. Definition of Typography Typography is the appearance and arrangement of the characters that make up text on a page.
Cascading Style Sheets
CSS for Styling Text.
Web Development & Design Foundations with XHTML
ATLAS WEB Web Typography.
CS3220 Web and Internet Programming CSS Basics
Understanding and Applying Typography in CSS
Microsoft Word - Formatting Pages
The Internet 10/11/11 Fonts and Colors
Introducing :CSS Cascading Style Sheets in 5 Lessons.
Web Development & Design Foundations with HTML5
Applying Typography in CSS
Using Cascading Style Sheets Module B: CSS Structure
Text Size and typeface of text Bold, italics, capitals, underlines
Typography Basics 2.01 Investigate typefaces and fonts.
Understanding and Applying Typography in CSS
2.01 Investigate typefaces and fonts.
1.01 Investigate typefaces and fonts.
CSS – Properties & Values
2.01 Investigate typefaces and fonts.
TYPEFACE TERMINOLOGY SERIF SANS-SERIF MONOSPACE Explain: names for different types of typeface (point out differences) Click: serif Click: sans-serif.
The Internet 10/13/11 The Box Model
Cascading Style Sheets
CMPE 280 Web UI Design and Development September 4 Class Meeting
Typography is the strategic use of type to create texture, hierarchy, organization, and clear communication.
Stylin’ with CSS.
Web Development & Design Foundations with H T M L 5
Cascading Style Sheets
Web Development & Design Foundations with H T M L 5
CS3220 Web and Internet Programming CSS Basics
CMPE 280 Web UI Design and Development February 7 Class Meeting
CS3220 Web and Internet Programming CSS Basics
Lesson 5 Topic B – Basic Text & Fonts
Cascading Style Sheets
Cascading Style Sheets
Stylin’ with CSS.
Cascading Style Sheets
Stylin’ with CSS.
Session IV Chapter 15 - How Work with Fonts and Printing
Cascading Style Sheets
CMPE 280 Web UI Design and Development September 5 Class Meeting
Presentation transcript:

ATLAS 2200 - WEB Web Typography

Typography The visual design of the written word

Typography For the benefit of the reader, not the writer. Writer Reader High attention span Low attention span High interest in topic Medium-low interest in topic

Typography Good typography counteracts low attention spans by creating interesting and pleasing looking content for the reader. Most readers are looking for reasons to stop reading

Typography Good typography reinforces the meaning and purpose of the text

Typography

Typography

Typeface vs. Font? Helvetica Helvetica.ttf

For the Web System Fonts (Web Safe Fonts) Sans-serif Arial, Calibri, Helvetica, Verdana Serif Times New Roman, Georgia, Lucida, Cambria Monospace Courier New, Lucida Sans Typewriter Fantasy Impact, Copper Plate, Papyrus (Don’t use unless your building a website for a Yoga Studio) Cursive Brush Script Std, Comic Sans (Don’t use unless you want to fail the class)

Serif Times New Roman

Sans-Serif Arial Typeface

Monospace Courier New

Fantasy Impact Papyrus

Brush Script Comic Sans (Seriously… don’t use this font…) Cursive Brush Script Comic Sans (Seriously… don’t use this font…)

Font-Family body{ font-family: helvetica, arial, sans-serif; } Pros: No licensing Easy to use Cons: Limited choices Fonts must be installed on users computer User control over your design

Helvetica Bodoni Contrast Higher contrast fonts tend to be better suited for short lengths of text because they can be burdensome to read in longer spans…

Weight

Weight body{ font-family:helvetica, arial, sans-serif; font-weight:800; } Not all typefaces have every weight option available

Font Size Point 8 9 10 11 12 14 18 24 36 48 60 72

Font Size 1 point = 1/72in. Default Browser Font Size: 16px Pixel sizes? Slight differences vs. pt Pixel values don’t scale well

EMs .75em = 75% = figcaption 1em = Default browser font size = p, body 1.5em = 150% = h2 2em = 200% = h1

EMs .75em = 75% = figcaption 1em = Default browser font size = p, body 1.5em = 150% = h2 2em = 200% = h1

Em vs. px. Vs. %

@Font-Face @font-face { font-family: myUniqueFontName; src: url(fonts/myUniqueFontFile.ttf); } body{

Font Downloads Dafont.com 1001freefonts.com FontSquirrel.com FontSpring.com

@Font-Face Font-Squirrel: http://www.fontsquirrel.com/fontface/generator

@Font-Face @font-face { font-family: 'myUniqueFontName'; src: url('myUniqueFontFile.eot'); src: url('myUniqueFontFile.eot?#iefix') format('embedded-opentype'), url('myUniqueFontFile.woff2') format('woff2'), url('myUniqueFontFile.woff') format('woff'), url('myUniqueFontFile.ttf') format('truetype'), url('myUniqueFontFile.svg#myUniqueFontFile') format('svg'); font-weight: normal; font-style: normal; } body{ font-family: myUniqueFontName;

@Font-Face Pros: Unique fonts in normal text state Easy to set up at a base level No JavaScript needed Cons: Different browsers only support certain font types Potential copyright implications

Font Services & Subscriptions Google Fonts Adobe Typekit

Google Fonts https://fonts.google.com/ <link href="https://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet"> font-family: 'Orbitron', sans-serif;

Adobe Typekit https://typekit.com/ <script src="https://use.typekit.net/lss3yld.js"></script> <script>try{Typekit.load({ async: true });}catch(e){}</script> <style type="text/css"> body { font-family: "sarina",sans-serif; }

Font Services & Subscriptions Pros: Unique fonts in normal text state Easy to set up No risk of copyright infringement Cons: If the service goes down, fonts will not work $$$

Font Pairing http://fontpair.co/ https://designschool.canva.com/blog/the-ultimate-guide-to-font-pairing/ https://www.canva.com/font-combinations/

Essential Typography Rules Font Size Between 12-32px or .75-2em FigCaption text and other similar elements are the only things that should be 12px / .75em Body text should be between 14-18px / .875 – 1.125em font-size:1em;

Essential Typography Rules Default line height is 110-120% in most browsers. 110-150% for body text is recommended Line-height:100%;

Essential Typography Rules Opinions vary, but the average length of a line of text in HTML should range somewhere in between 50-90 characters (including spaces)

Essential Typography Rules Avoid goofy fonts, as well as Papyrus and Comic Sans Keep body and paragraph typefaces simple More decorative fonts should only be used for headings

Essential Typography Rules Only underline links, nothing else If you choose not to underline links, they should stand out in some other way such as color or weight Don’t make links bigger than the rest of the text in a line.

Essential Typography Rules Strong and Emphasis text only when needed All caps only in headings (if at all) Center align text sparingly Never center align lengthy blocks of content

Essential Typography Rules Hyphens: auto - If you justify text

Continue Exploring https://fontsinuse.com/ http://ilovetypography.com/