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