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