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