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