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