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