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