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