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