mirror of
https://github.com/Alvin-Zilverstand/pokedex.git
synced 2026-03-06 11:07:31 +01:00
16 lines
410 B
HTML
16 lines
410 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Pokédex</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
|
|
</head>
|
|
<body>
|
|
<h1>Pokédex</h1>
|
|
<div id="pokemon-list"></div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|