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