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