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