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