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