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