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