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