Skip to content

Instantly share code, notes, and snippets.

@hustKiwi
Last active September 7, 2019 04:11
Show Gist options
  • Save hustKiwi/3f544f3acaf875c5cefbc879fee7c45e to your computer and use it in GitHub Desktop.
Save hustKiwi/3f544f3acaf875c5cefbc879fee7c45e to your computer and use it in GitHub Desktop.
<!-- Use absolute URL to link to an internal address and apply target=“_blank” to external links -->
<a href="/index.html">HOME</a>
<a href="https://www.wix.com">Wix.com</a>
<a href="/">HOME</a>
<a href="https://www.wix.com" target="_blank">Wix.com</a>
<!-- Redundant usages of tags -->
<div><span>BUSINESS EXPERT</span></div>
<div><h2>BUSINESS EXPERT</h2></div>
<div>BUSINESS EXPERT</div>
<h2>BUSINESS EXPERT</h2>
<!-- Image alt should be a short description for its content -->
<img src="https://imglink.jpg" alt="avatar" />
<img src="https://imglink.jpg" alt="cinema_icon" />
<img src="https://imglink.jpg" alt="John Roberts" />
<img src="https://imglink.jpg" alt="Cinema" />
<!-- Don’t overuse IDs and Class Names -->
<div id="header" class="header-wrapper">
<ul id="main-nav">
<li class="main-nav-item"><a href="/">HOME</a></li>
</ul>
<div id="nav-side-btn">
<button>DOWNLOAD MY FULL RESUME</button>
</div>
</div>
<div id="header">
<a href="/">HOME</a>
<button class="download-btn">DOWNLOAD MY FULL RESUME</button>
</div>
<!-- Block elements Mustn't be wrapped with a <span> -->
<span><div></div></span>
<div></div>
<!-- Meaningful names for IDs -->
<div id="banner1"></div>
<div id="skills"></div>
<!-- Headings should appear sequentially -->
<h2>EDUCATION</h2>
<h6>The San Francisco Business School</h6>
<h2>EDUCATION</h2>
<h3>The San Francisco Business School</h3>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment