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