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