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