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