Use on the webTotal Use [ 4626 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/ac91e121e1b67a75961fd5fb2120949a?family=Terminal+Dosis+Medium" 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/ac91e121e1b67a75961fd5fb2120949a?family=Terminal+Dosis+Medium);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Terminal Dosis Medium";
src: url("https://db.onlinewebfonts.com/t/ac91e121e1b67a75961fd5fb2120949a.eot");
src: url("https://db.onlinewebfonts.com/t/ac91e121e1b67a75961fd5fb2120949a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/ac91e121e1b67a75961fd5fb2120949a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/ac91e121e1b67a75961fd5fb2120949a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/ac91e121e1b67a75961fd5fb2120949a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/ac91e121e1b67a75961fd5fb2120949a.svg#Terminal Dosis Medium")format("svg");
}
2CSS rules to specify fonts
font-family: "Terminal Dosis Medium";