Use on the webTotal Use [ 4317 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/d021bd468ea1422b3ba80c01f6e4fce2?family=Zed+Said" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/d021bd468ea1422b3ba80c01f6e4fce2?family=Zed+Said);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Zed Said";
src: url("https://db.onlinewebfonts.com/t/d021bd468ea1422b3ba80c01f6e4fce2.eot");
src: url("https://db.onlinewebfonts.com/t/d021bd468ea1422b3ba80c01f6e4fce2.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/d021bd468ea1422b3ba80c01f6e4fce2.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/d021bd468ea1422b3ba80c01f6e4fce2.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/d021bd468ea1422b3ba80c01f6e4fce2.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/d021bd468ea1422b3ba80c01f6e4fce2.svg#Zed Said")format("svg");
}
2CSS rules to specify fonts
font-family: "Zed Said";