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