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