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