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