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