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