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