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