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