Architect-BoldS Font Download
How to install this font?
- Download zip file.
- Unzip the file.
- Copy the .ttf, .otf or .fon extension file to your OS font folder.
Windows
C:\Windows\Fonts or C:\WINNT\Fonts
Mac OS X
/Library/Fonts (for all users), or /Users/YOUR_USERNAME/Library/Fonts (for you only).
If your OS includes the Font Book, you can as well double-click on a font file, then a preview pops with an "Install font" button.
Linux
Copy the font files (.ttf or .otf) to fonts:/// in the File manager.
Display this font on your website with Cufón technologywhat's cufón?
Cufón installation
-
Download cufon.yui.js from http://cufon.shoqolate.com/js/cufon-yui.js ( upload to your httpd root, in this example. ) Place this code between <head> tag.
<script type="text/javascript" src="http://your-domain.com/cufon.yui.js"></scrip>
-
Convert your font file at http://cufon.shoqolate.com/generate/
or
Download Cufón script from the link above.
(upload to your httpd root, in this example. Place this code after step 1)
<script type="text/javascript" src="http://your-domain.com/font-name.font.js"></script> - Use selector to specify which portion of text you want to have Cufón effect. Selector syntax is similar to JQuery. for more information, visit here http://wiki.github.com/sorccu/cufon/usage
Complete example of Cufón implementation
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="http://your-domain.com/cufon.yui.js" type="text/javascript"></script>
<script src="http://your-domain.com/font-name.font.js" type="text/javascript"></script>
<script type="text/javascript">
Cufon.replace("H1");
</script>
</head>
<body>
<H1>This text will be shown in the font you selected.</H1>
</body>
</html>