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