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