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