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