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