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