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