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