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