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