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