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