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