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