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