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