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