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