iT邦幫忙

2022 iThome 鐵人賽

0
Modern Web

30天複習網頁前端設計!系列 第 19

Day19:CSS-文字與字體

  • 分享至 

  • xImage
  •  

font文字屬性

font-size-設定文字大小,屬性值為數字+單位
font-weight-設定文字粗細,屬性值normal為正常粗細的字體、bold為粗體字。
font-style-設定文字樣式,屬性值normal為正體字、italicblique均為斜體字。
font-family-設定文字字型,可以同時設定多組不同的字型,當瀏覽器沒有提供第一種字型的時候,會自動顯示第二種字型,依此類推。

語法:

E {
    font-family:"MingLiU","DFKai-sb",serif,sans-serif;
}

字型範例

  • 常用字型:細明體(MingLiU)、標楷體(DFKai-sb)、微軟正黑體(Microsoft JhengHei)。
  • 通用字型:有襯線字(serif)、無襯線字(sans-serif)、cursive、fantasy、monospace。
    *補充:建議使用英文名稱而不是中文名稱,並且加上通用字型,避免瀏覽器因讀取錯誤或用戶端沒有你設定的字型而造成顯示失敗的狀況。

除了HTML中的標準字體外,還可以使用Google字體,Google Fonts是可以免費使用的,下面將會講解如何使用Google Fonts。

  1. 進入Google Fonts點選想要的字體
    https://ithelp.ithome.com.tw/upload/images/20221127/2015254524bXm7MB3T.jpg
  2. 滑到下面點選右側的「Select......」將字體樣式加入清單(可複選)
    https://ithelp.ithome.com.tw/upload/images/20221127/20152545CjKFJ8q0ei.jpg
  3. 選擇完後點選右上角的清單
    https://ithelp.ithome.com.tw/upload/images/20221127/20152545RBGGSDa5be.jpg
  4. <link>內容複製到自己的HTML檔的<head></head>中,CSS的內容則是複製到自己的CSS檔裡面。
    https://ithelp.ithome.com.tw/upload/images/20221127/20152545vMd2j0dK4J.jpg

HTML

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="style.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,700&display=swap" rel="stylesheet">
</head>

CSS

* {
    color: coral;
    font-size: 40px;
    font-family: 'Roboto Condensed', sans-serif;
}
  1. 執行後就完成了!
    https://ithelp.ithome.com.tw/upload/images/20221127/20152545gCi7o7l4BJ.jpg

參考資料:https://www.wibibi.com/info.php?tid=67
https://www.wibibi.com/info.php?tid=CSS_font_%E6%96%87%E5%AD%97%E5%B1%AC%E6%80%A7
https://ithelp.ithome.com.tw/articles/10263759?sc=iThomeR


上一篇
Day18:CSS-繼承
下一篇
Day20:CSS-Box Model
系列文
30天複習網頁前端設計!27
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言