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