码迷,mamicode.com
首页 > Web开发 > 详细

【codecademy summary】html+css font

时间:2017-02-10 23:24:09      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:mil   api   https   styles   ace   .com   ica   sheet   nal   

The default typeface for all HTML elements is TImes New Roman.

  exmaple as use of font typeface:  font-family: "Courier New"; 

Two different typefaces of types as:

  1.Serif - traditionally used in print designs, as they have been considered easier to read in long paragraphs of text. Like Times New Roman and Georgia.

  2.sans serif - can look better and be easier to read. Like Arial and Helvetica.

When the stylesheer specifies a font not installed on user‘s computer, the pre-installed fonts can be used as fallback fonts for users.

  exmaple as fallback fonts typeface as: font-family:Garamond, Times, serif;

Google offers Google Fonts, a firectory of thousands of open-source fonts that are free to use by anyone.To use a Google Font,you can use a <link>element in html file.

  For exmaple, we use Raleway typeface:

  <link href="https://fonts.googleapis.com/css?family=Raleway" type="text/css" rel="stylesheet" >

  or use Playfair Display typeface:

  <link href="https://fonts.googleapis.com/css?family=Playfair+Display" type="text/css" rel="stylesheet" >

 

To change the size of text on your web page, yoiu can use the font-size property.

  for exmaple, we use that:

  font-size :18px

  font-size: 1.3em

  font-size: 150%

    

 

【codecademy summary】html+css font

标签:mil   api   https   styles   ace   .com   ica   sheet   nal   

原文地址:http://www.cnblogs.com/guangluwutu/p/6387022.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!