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