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