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