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