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