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