Use on the webTotal Use [ 3803 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/0b4984c07233749280a132d88eb606fd?family=Always+take+a+bath%2C+and+don%27t+be+stinky+Regular" 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/0b4984c07233749280a132d88eb606fd?family=Always+take+a+bath%2C+and+don%27t+be+stinky+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Always take a bath, and don't be stinky Regular";
src: url("https://db.onlinewebfonts.com/t/0b4984c07233749280a132d88eb606fd.eot");
src: url("https://db.onlinewebfonts.com/t/0b4984c07233749280a132d88eb606fd.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/0b4984c07233749280a132d88eb606fd.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/0b4984c07233749280a132d88eb606fd.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/0b4984c07233749280a132d88eb606fd.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/0b4984c07233749280a132d88eb606fd.svg#Always take a bath, and don't be stinky Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Always take a bath, and don't be stinky Regular";