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