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