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