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