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