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