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