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