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