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