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