Open williambeeler opened 2 years ago
I've noticed several places where there are oddities with A Href or Buttons. Here's one:
In this case, there is javascript in the href. If you need to use a placeholder, the following will suffice:
<a href="#">Some Link</a>
Another place you have 3 hashtags:
This isn't necessarily wrong, but for consistency sake, I would just stay with one hashtag.
Also, you have button onclick events like these:
That is a very odd formation. I would recommend the above re-worked like the following:
<a href="#"> <button class="button-maroon">CTA here</button> </a>
OR, alternatively:
<a href="#" class="button-maroon">CTA here</a>
I've noticed several places where there are oddities with A Href or Buttons. Here's one:
In this case, there is javascript in the href. If you need to use a placeholder, the following will suffice:
Another place you have 3 hashtags:
This isn't necessarily wrong, but for consistency sake, I would just stay with one hashtag.
Also, you have button onclick events like these:
That is a very odd formation. I would recommend the above re-worked like the following:
OR, alternatively: