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