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