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