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