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