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