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