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