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