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