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