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