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