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