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