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