I need the CSS for the Segoe UI font


#1

I need the CSS for the Segoe UI font to embed in my prototype. How can I find that CSS for the “Segoe UI” font, not “Segoe UI Symbol”


#2

A @font-face declaration usually looks like:

@font-face {
  font-family: 'myfont'; 
  src: url('http://www.website.com/path/to/your/font') format('woff');
  font-weight: normal; 
  font-style: normal;
}

Replace values as applicable to your case. Leave out the @font-face{ } part though, Axure only needs the part inside the brackets.

Alternatively if there is CSS hosted somewhere that already has the declaration you can just link to the CSS.


unlisted #3

closed #4