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