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