camerican / NYCDA_SCC16_Jean

NYCDA Summer Code Camp 2016 - Jean's Work
0 stars 0 forks source link

Remove unnecessary mark-up #9

Open camerican opened 8 years ago

camerican commented 8 years ago

Within your infotech.html page, you're wrapping your img within a paragraph p tag. The paragraph doesn't appear to have any purpose here, in which case it should be removed to simplify the code.

In addition, it's possible to remove the height=100% specification since the browsers will automatically adjust height to match width proportionately.

Thus, the code:

<p><img src="img/MusicalME_Images_tagline.jpg" height=100% width=100%></p>

can become:

<img src="img/MusicalME_Images_tagline.jpg" width="100%" />