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