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