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