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