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