├── CavafyScript_Specimen.pdf ├── OpenType-PS └── CavafyScript.otf ├── OpenType-TT └── CavafyScriptTT.ttf ├── README.md ├── Web-PS ├── CavafyScript.css ├── CavafyScript.html ├── CavafyScript.otf └── CavafyScript.woff2 └── Web-TT ├── CavafyScriptTT.css ├── CavafyScriptTT.eot ├── CavafyScriptTT.html ├── CavafyScriptTT.ttf └── CavafyScriptTT.woff /CavafyScript_Specimen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onassis-org/cavafy-script/d87baf9aa80a3fa1d6930183c8f7673bf53a6719/CavafyScript_Specimen.pdf -------------------------------------------------------------------------------- /OpenType-PS/CavafyScript.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onassis-org/cavafy-script/d87baf9aa80a3fa1d6930183c8f7673bf53a6719/OpenType-PS/CavafyScript.otf -------------------------------------------------------------------------------- /OpenType-TT/CavafyScriptTT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onassis-org/cavafy-script/d87baf9aa80a3fa1d6930183c8f7673bf53a6719/OpenType-TT/CavafyScriptTT.ttf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # cavafy-script 2 | Cavafy Script is a typeface based on the calligraphic style of the alexandrian poet C. P. Cavafy. 3 | -------------------------------------------------------------------------------- /Web-PS/CavafyScript.css: -------------------------------------------------------------------------------- 1 | /* Webfont: CavafyScript-Regular */@font-face { 2 | font-family: 'CavafyScript'; 3 | src: url('CavafyScript.woff2') format('woff2'), /* Modern Browsers */ 4 | url('CavafyScript.ttf') format('truetype'); /* Safari, Android, iOS */ 5 | font-style: normal; 6 | font-weight: normal; 7 | text-rendering: optimizeLegibility; 8 | } 9 | 10 | -------------------------------------------------------------------------------- /Web-PS/CavafyScript.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Cavafy Script Regular - Web Font Specimen 7 | 8 | 11 | 12 | 13 |

The quick brown fox jumps over the lazy dog. $123.45!

14 | 15 | 16 | -------------------------------------------------------------------------------- /Web-PS/CavafyScript.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onassis-org/cavafy-script/d87baf9aa80a3fa1d6930183c8f7673bf53a6719/Web-PS/CavafyScript.otf -------------------------------------------------------------------------------- /Web-PS/CavafyScript.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onassis-org/cavafy-script/d87baf9aa80a3fa1d6930183c8f7673bf53a6719/Web-PS/CavafyScript.woff2 -------------------------------------------------------------------------------- /Web-TT/CavafyScriptTT.css: -------------------------------------------------------------------------------- 1 | /* Webfont: CavafyScriptTT-Regular */@font-face { 2 | font-family: 'CavafyScriptTT'; 3 | src: url('CavafyScriptTT.eot'); /* IE9 Compat Modes */ 4 | src: url('CavafyScriptTT.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 5 | url('CavafyScriptTT.woff') format('woff'), /* Modern Browsers */ 6 | url('CavafyScriptTT.ttf') format('truetype'); /* Safari, Android, iOS */ 7 | font-style: normal; 8 | font-weight: normal; 9 | text-rendering: optimizeLegibility; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Web-TT/CavafyScriptTT.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onassis-org/cavafy-script/d87baf9aa80a3fa1d6930183c8f7673bf53a6719/Web-TT/CavafyScriptTT.eot -------------------------------------------------------------------------------- /Web-TT/CavafyScriptTT.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Cavafy Script TT Regular - Web Font Specimen 7 | 8 | 11 | 12 | 13 |

The quick brown fox jumps over the lazy dog. $123.45!

14 | 15 | 16 | -------------------------------------------------------------------------------- /Web-TT/CavafyScriptTT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onassis-org/cavafy-script/d87baf9aa80a3fa1d6930183c8f7673bf53a6719/Web-TT/CavafyScriptTT.ttf -------------------------------------------------------------------------------- /Web-TT/CavafyScriptTT.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onassis-org/cavafy-script/d87baf9aa80a3fa1d6930183c8f7673bf53a6719/Web-TT/CavafyScriptTT.woff --------------------------------------------------------------------------------