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