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