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