Skip to content

Instantly share code, notes, and snippets.

@ZakharDay
Created September 27, 2016 18:26
Show Gist options
  • Save ZakharDay/6b0679100e893eb3eac72c4a5c1b2a95 to your computer and use it in GitHub Desktop.
Save ZakharDay/6b0679100e893eb3eac72c4a5c1b2a95 to your computer and use it in GitHub Desktop.
HTML Good and Bad Semantics
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bad Semantics</title>
</head>
<body>
<table>
<tr>
<td>Atom is a fast-moving code editor developed by GitHub.</td>
</tr>
<tr>
<td>
—<a href="https://medium.com/@zakharday/using-atom-for-your-first-html-css-coding-3b2b284086a3"><cite>Zakhar Day</cite></a>,
in the post on Medium
</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Good Semantics</title>
</head>
<body>
<blockquote cite="https://medium.com/@zakharday/using-atom-for-your-first-html-css-coding-3b2b284086a3">
<p>Atom is a fast-moving code editor developed by GitHub.</p>
</blockquote>
<p>
— Zakhar Day, in the
<a href="https://medium.com/@zakharday/using-atom-for-your-first-html-css-coding-3b2b284086a3">post on Medium</a>
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment