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