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