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