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