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