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