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