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