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