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