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