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