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