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