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