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