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