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