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