Skip to content

Instantly share code, notes, and snippets.

@nora-tetsu
Created July 29, 2023 02:13
Show Gist options
  • Save nora-tetsu/08c8e410c200f539376c89b692452156 to your computer and use it in GitHub Desktop.
Save nora-tetsu/08c8e410c200f539376c89b692452156 to your computer and use it in GitHub Desktop.
<html lang="ja">
<head>
<meta charset="utf-8">
<meta content='width=device-width,initial-scale=1.0,user-scalable=yes' name='viewport' />
<title>Title</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body spellcheck="false">
<h2>簡易メモアプリ</h2>
<textarea id="input" rows="3" placeholder="好きな文字列を入力"></textarea>
<button id="add-item">追加</button>
<ul id="item-list"></ul>
<div id="explain">
<p>説明書き</p>
<ul>
<li>テキストエリアに入力して「追加」をクリックでメモを記録します。</li>
<li>項目はダブルクリックで削除できます。</li>
<li>マウスオーバーで追加日時を確認できます。</li>
<li>保存機能は付けていないためリロードすると全て消去されます。</li>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment