A simple question: why do these two fonts look different in Photoshop and on the website. 
In this image, this is the first text from the html code, the second is the image from Photoshop. The same font, the same size - 30. But this first one looks more "bolder" than the second. What for? I want to have an identical font, as in Photoshop (second image).
Here's the css code:
@font-face { font-family: "SegoeWP"; src: url("fonts/play/SegoeWP.eot"); src: url("fonts/play/SegoeWP.eot?#iefix") format("embedded-opentype"), url("fonts/play/SegoeWP.woff") format("woff"), url("fonts/play/SegoeWP.ttf") format("truetype"), url("fonts/play/SegoeWP.svg#PlayRegular") format("svg"); font-weight: lighter; } #strona { width: 1120px; margin-left: auto; margin-right: auto; } #Section1 { font-family: "SegoeWP", Tahoma, Arial, sans-serif; font-size: 30px; } header, footer, article, section, hgroup, nav, figure { display: block; } body { font-family: "SegoeWP", Tahoma, Arial, sans-serif; background-image:url('background.jpg'); background-repeat: no-repeat; background-position: top center; color: #ffffff; }
And the html code.
<section id="Section1"> { mywebsite.NET } </section> <img src="mojeportfolio.png" />
any ideas? Hello!
More details
I found that I have 3 types of SegoeWP font in the folder. "SegoeWP", "SegoeWP-Light", "SegoeWP-Semibold". "SegoeWP" looks too "bold", but this "SegoeWP-Light" is perfect and looks the same as in Photoshop when I double-clicked it. How can I use it on my website? When I change this part β url ("fonts / play / SegoeWP-Light. *"), Nothing changes on the website. What's wrong?
whoah
source share