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