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