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