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