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