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