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