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