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