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