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