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