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