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