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