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