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