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