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