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