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