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