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