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