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