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