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