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