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