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