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