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