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