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