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