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