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