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