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