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