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