June 6, 201313 yr I'm really new to web design. There is that font in Photoshop called Arial which everybody knows but there is a "Narrow" version of it which I like. If there is a font that is installed in my computer, how do I make it visible to people that visit the website when they don't have the font installed? I want to do it in HTML. Thanks.
June 10, 201313 yr For a start, you won't be able to use Arial Narrow on your site, for free at least. There are however, alternatives. If you visit Google web fonts, typekit, font squirrel, etc. You'll be able to pick a font and the instructions of how to use it on your site should pop up. If you get stuck, let us know. Good luck, ~evu.
June 10, 201313 yr u can use css to specify the fonts.. for eg: <p>This is an example</p> css p{font: 14px/75px 'Arial Narrow', Arial, sans-serif; font-stretch: condensed;}
June 11, 201313 yr but don't use font-stretch or it's just going to look nasty find another free condensed font instead
June 11, 201313 yr If you want to use arial narrow in your site simply give it in you css code p {font-family: "Aril Narrow", Arial, sans-serif;font-size:13px; line-height:16px;color:#333333; overflow-x:hidden;padding:5px 0px;} if you want to use some fancy fonts in your webiste, you can use google fonts, just go to google fonts website, search font of your choice,. and look for direction how to use here is a sample: give this in header section <link href='http://fonts.googleapis.com/css?family=Wire+One&v1' rel='stylesheet' type='text/css' /> and in css p {font-family: "Wire One", Arial, sans-serif;font-size:13px;line-height:16px;color:#333333; overflow-x:hidden;padding:5px 0px;}
Create an account or sign in to comment