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