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