Created
September 27, 2016 18:26
-
-
Save ZakharDay/6b0679100e893eb3eac72c4a5c1b2a95 to your computer and use it in GitHub Desktop.
HTML Good and Bad Semantics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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