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