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