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