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