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