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