Files
freeCodeCamp/curriculum/challenges/portuguese/01-responsive-web-design/basic-html-and-html5/make-dead-links-using-the-hash-symbol.portuguese.md
Marco Quintella 458a087c14 Translation fixes (#34302)
Changed the position of the substantives to fix the mistakes when translation English to Portuguese. Some small adjustments to the word choices in order to make the text more clear.
2019-06-03 13:13:13 -07:00

1.9 KiB

id, title, challengeType, videoUrl, localeTitle
id title challengeType videoUrl localeTitle
bad87fee1348bd9aedf08817 Make Dead Links Using the Hash Symbol 0 Faça links mortos usando o símbolo Hash

Description

Alguma vezes você irá adicionar elementos a em seu site antes mesmo de saber para onde eles irão ligar. Isso também é útil quando você está alterando o comportamento de um link usando JavaScript , o qual aprenderemos mais tarde.

Instructions

O valor atual do atributo href é um link que aponta para "http://freecatphotoapp.com". Substitua o valor do atributo href por um # , também conhecido como um símbolo de hash, para criar um link morto. Por exemplo: href="#"

Tests

tests:
  - text: 'Seu elemento <code>a</code> deve ser um link morto com o valor do atributo <code>href</code> definido como &quot;#&quot;.'
    testString: 'assert($("a").attr("href") === "#", "Your <code>a</code> element should be a dead link with the value of the <code>href</code> attribute set to "#".");'

Challenge Seed

<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="http://freecatphotoapp.com" target="_blank">cat photos</a>.</p>

  <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">

  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>

Solution

// solution required