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