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