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