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