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