Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moko256/3a54ce079ba5b251a5df9669cf1f0437 to your computer and use it in GitHub Desktop.
Save moko256/3a54ce079ba5b251a5df9669cf1f0437 to your computer and use it in GitHub Desktop.
HTMLのAタグで作った半加算器のような何か
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Aタグだけで作った半加算器の様な何か</title>
</head>
<body>
<a name="00"><div>
<p>値:00</p>
<a href="#00">+0</a>
<a href="#01">+1</a>
</div></a>
<a name="01"><div>
<p>値:01</p>
<a href="#01">+0</a>
<a href="#10">+1</a>
</div></a>
<a name="10"><div>
<p>値:10</p>
</div></a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment