poke-app / index.html
MakiAi's picture
Update index.html
0faf90e verified
raw
history blame contribute delete
577 Bytes
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>ポケモン図鑑</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="pokedex">
<h1>ポケモン図鑑</h1>
<div class="list">
<ul id="pokemon-list"></ul>
</div>
<div class="screen">
<img id="pokemon-sprite" src="" alt="ポケモンのスプライト">
<p id="pokemon-info">ポケモンを選択してください</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>