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