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