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