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