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