Good day! Please help me find out what I wrote wrong, that the client has the Verdana font in one window, the text is shown correctly, but not in the other?

<asp: Panel ID = "Panel2" runat = "server" Font-Size = "14px" Font-Names = "Verdana" GroupingText = "Type"> Panel is in asp: Table is also set to Font-Names = "Verdana"

In the first window, the same code works correctly.

    1 answer 1

    Or maybe it is better to assign styles and fonts through a CSS file, like this:

    @font-face { font-family: 'FuturaNewBook'; src: url('/fonts/futura_new_book_reg-webfont.eot'); src: url('/fonts/futura_new_book_reg-webfont.eot?#iefix') format('embedded-opentype'), url('/fonts/futura_new_book_reg-webfont.woff') format('woff'), url('/fonts/futura_new_book_reg-webfont.ttf') format('truetype'), url('/fonts/futura_new_book_reg-webfont.svg#FuturaNewBook') format('svg'); font-weight: normal; font-style: normal; } .content { width: 100%; font-family: 'FuturaNewBook'; font-size: 1.2em; line-height: 1.2em; text-align: left; /* http://www.linedmk.com/page32.html*/ clear: both; } 

    And the font files in the / fonts / folder, and then on the client there will always be the font that you have installed.