-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 894 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<link rel="stylesheet" href="index.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokémon Counter</title>
</head>
<body>
<div id="container">
<h1>Pokémon Captured:</h1>
<h2 id="count-el">0</h2>
<button id="increment-btn" onclick="increment()">Caught ya!</button>
<button id="save-btn" onclick="save()">SAVE</button>
<p id="save-el">Capture Log: </p>
<br>
<a id="source" href="https://wallpapers.com/wallpapers/pikachu-4k-and-pokemon-cousins-field-trip-03fs1oq9pudixw79.html" target="_blank">Background Image Source</a>
</div>
<script src="index.js">
nnerText
</script>
</body>
</html>