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