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