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