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