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