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