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