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