+ All Categories
Home > Documents > Better Armenian Typography in Web Design

Better Armenian Typography in Web Design

Date post: 10-Apr-2015
Category:
Upload: matthew-ash
View: 693 times
Download: 1 times
Share this document with a friend
30
Better Armenian Typography Online Using Principals of Typography and Modern Web Technologies By Dn. Matthew Ash
Transcript
Page 1: Better Armenian Typography in Web Design

Better Armenian Typography Online

Using Principals of Typography and Modern Web Technologies

By Dn. Matthew Ash

Page 3: Better Armenian Typography in Web Design

typography1. the art or process of setting and arranging types and printing from them. 2. the style and appearance of printed matter.

Page 4: Better Armenian Typography in Web Design

typography1. the mechanical notation and arrangement of language

– Mark Boulton

Page 5: Better Armenian Typography in Web Design

1. Web Design ♥’s Typography

2. Elements of Typography

3. The Issue of Armenian Typefaces

4. The CSS3 Salvation

Page 6: Better Armenian Typography in Web Design

Web Design ♥’s TypographyYou can’t have one without the other

Page 7: Better Armenian Typography in Web Design

Web Design is 95% Typography

Page 8: Better Armenian Typography in Web Design

Typography is

1. Communication

2. Interface

3. Identity

Page 9: Better Armenian Typography in Web Design
Page 10: Better Armenian Typography in Web Design

The Elements of TypographyAs they apply to web design

Page 11: Better Armenian Typography in Web Design

Measure

p {    font-size: 10px;    max-width: 300px;}

CSS

Page 12: Better Armenian Typography in Web Design

Leading

body {    font-family: Helvetica    font-size: 12px;    line-height: 16px;}

CSS

Page 13: Better Armenian Typography in Web Design

Rhthym

body {  font-family: Helvetica;  font-size: 12px; line-height: 15px;}

p {  margin-bottom: 15px;}

CSS

Page 14: Better Armenian Typography in Web Design
Page 15: Better Armenian Typography in Web Design
Page 16: Better Armenian Typography in Web Design

Armenian Fonts & Web DesignThey are not friends… yet

Page 17: Better Armenian Typography in Web Design

Serif1. Georgia2. Palatino Linotype3. Times New Roman4. MS Serif5. Garamond6. Bookman Old Styl

Sans-Serif1. Verdana2. Arial3. Arial Black4. Symbol5. Impact6. Tahoma7. Century Gothic8. Lucida Grande9. Lucida Grande Unicode10.Trebuchet MS11.MS Sans Serif

Monospace1. Courier New2. Courier3. Lucida Console

Common Fonts (English)

Page 18: Better Armenian Typography in Web Design

Serif1. Mshtakan Mac

Sans-Serif1. Sylfaen Windows2. Arial Unicode MS Office

Monospace

Common Fonts (Armenian)

Page 19: Better Armenian Typography in Web Design

Body {

font-family: 'Arian AMU', 'Arial AMU', 'Arial Unicode', Arial, Helvetica, sans-serif !important;

/* we hope this works! */

}

The Common Solution

Page 20: Better Armenian Typography in Web Design
Page 21: Better Armenian Typography in Web Design
Page 22: Better Armenian Typography in Web Design

Web Fonts are the solutionA newly available HTML5 / CSS3 method

Page 23: Better Armenian Typography in Web Design

Our Tools

1. Our desired Armenian Font (Unicode Preferred)

2. Font Squirrel @font-face Kit Generator

3. FontKit’s Web Font Loader

Page 24: Better Armenian Typography in Web Design
Page 25: Better Armenian Typography in Web Design

@charset "UTF-8";

@font-face {font-family: 'ArianAMU';src: url('arnamu-webfont.eot');src: local('☺'), url('arnamu-webfont.woff') format('woff'), url('arnamu-webfont.ttf') format('truetype'), url('arnamu-webfont.svg#webfontbPntyCTf') format('svg');font-weight: normal;font-style: normal;

}

Page 26: Better Armenian Typography in Web Design

<script src="http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"></script>

<script type="text/javascript"> WebFont.load({ custom: { families: ['ArianAMU'], urls : ['stylesheet.css'] } });</script>

Web Font Loader

Page 27: Better Armenian Typography in Web Design

:lang(hy) {

font-family: 'ArianAMU';

}

The CSS

Page 28: Better Armenian Typography in Web Design

1. The Grabar Cheatsheet

2. The Oratsouyts Online

Examples

Page 30: Better Armenian Typography in Web Design

Thanks


Recommended