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?
這樣呢??
<!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>