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