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