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