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