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