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