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