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