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