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