Tag to include a reference source

0

It may be a stupid question, but I'm not finding an answer in my searches. I am building a web page on html5 about fruit pulp and I am inserting information from other web sites and I want to leave the source of the information so that the users know the source of this. Are there any tags that I can leave the search source highlighted? What would be an ideal css format?

Here is the link to the page I'm developing: Fruit Pulp Page

    
asked by anonymous 22.08.2017 / 18:27

1 answer

1

You can use this example:

<blockquote cite="http://developer.mozilla.org">
  <p>Esta é uma citação tirada da
  Mozilla Developer Center.</p>
</blockquote>

link

    
24.08.2017 / 03:52