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