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