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