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