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