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