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