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