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