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