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