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