Any feedback on Tribute page is appreciated!

Here is the link to my tribute page hosted in codepen.io.

Thank you in advance for any feedback on this!

https://codepen.io/ybatista1121/full/GOoQNV/

Hi @yb13,

CSS inspector:

  • Unexpected extra semicolon
.row h2{
  text-align: center;;
}

HTML inspector:

  • target_ is not a valid attribute of the <a> element.
<p>Most of these information has been taken from <a href="https://en.wikipedia.org/wiki/Steve_Jobs" target_="_blank">Wikipedia</a> and all about <a href="http://allaboutstevejobs.com/bio/timeline.php" target="_blank"> Steve Jobs</a> websites.</p>
  • This code is not correct ( need a semicolon ):
<p>&copy Yunior Batista 2017</p>

MDN
Entidad - Glosario de MDN Web Docs: Definiciones de términos relacionados con la Web | MDN

An HTML entity is a piece of text (“string”) that begins with an ampersand (&) and ends with a semicolon (;) . Entities are frequently used to display reserved characters (which would otherwise be interpreted as HTML code), and invisible characters (like non-breaking spaces). You can also use them in place of other characters that are difficult to type with a standard keyboard.

  • You don’t use this code in codepen:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

How to use Bootstrap with codepen:

https://www.youtube.com/watch?v=hiCK6-8XfiA

Cheers and happy coding :slight_smile:

Hello @Diego_Perez,

thank you for your feedback ! I have fixed all of your suggestions. Please, feel free to check the tribute page again and provide any feedback. Your help is very much appreciated.

1 Like