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