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