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