iT邦幫忙

0

谷歌提供的中文字體,如何選擇???

  • 分享至 

  • xImage

https://fonts.google.com/spec...:400,500,500i,700

https://fonts.google.com/specimen/Ubuntu?selection.family=Ubuntu:400,500,500i,700

我選擇Ubuntu字體
然後有勾選 regular 400
我引入網站後按照他寫得這樣

font-family: 'Ubuntu', sans-serif;

不過我要的是 regular 400 這個字體
我有選了
但回網頁上看後,用插件去查字體是Medium
如何讓他是regular?

ccutmis iT邦高手 2 級 ‧ 2018-04-05 18:42:07 檢舉
https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight
regular 不叫字體 那是 css裡面的font-weight 一般預設就是 regular(400)
你可能在google font裡面去套用到ubuntu:500的css,所以font-weight就會變成Medium 以上只是猜測
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

0
ccutmis
iT邦高手 2 級 ‧ 2018-04-05 18:12:38
最佳解答

這樣呢??

<!DOCTYPE html>
<html>
<head><meta charset="UTF-8" />
<style>
@import url('https://fonts.googleapis.com/css?family=Ubuntu:400');
*{font-family:'Ubuntu';}
h1{font-size:3em;}
p{font-size:1.5em;}
</style>
</head>
<body>
<h1>Google Font: Ubuntu</h1>
<p>it works!</p>
</body>
</html>

我要發表回答

立即登入回答