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