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