3

I've been doing website design for a long time now but one thing which has me absolutely stumped is how people achieve that THICK bold h1 effect. Here is a nice example of what I mean -

enter image description here

Even after applying the font weight of 700 it always seems to look thin (regardless of whatever font I pick) -

enter image description here

I'm probably going to feel so stupid when I find out how its done.

user3599852
  • 237
  • 2
  • 4
  • 11

3 Answers3

2

You need to try a different font. The one in the example picture looks similar to Bebas Neue.

However, you can also very easily see exactly what CSS was used to achieve that effect by right-clicking the text and selecting Inspect Element in Chrome.


By googling that exact text I found the website you were looking at, and from that we can see they they're using a custom font, DriveTribe:

example

Clonkex
  • 3,373
  • 7
  • 38
  • 55
0

Have you tried making the text bold with the <b></b> or <strong></strong> tags?

p {
 background-color: black;
 color: white;
 font-size: 60px;
 font-family: Verdana
}
<p><strong>This is a text</strong></p>
ob1
  • 1,425
  • 1
  • 20
  • 33
0

Check to see whether your font has a heavier style available. For example, I was using the default style (i.e., 'regular') of this one not realizing that there are other styles available: https://fonts.google.com/specimen/Montserrat

Bluebird45
  • 147
  • 2
  • 10