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