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