-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (71 loc) · 2.21 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/styles.css" />
<script defer src="index.js"></script>
<title>Linting</title>
</head>
<body>
<h1 style="color: cadetblue">Linting is cool!</h1>
<p data-js="instructions">
These Toggle Buttons are not working. Why? Use the linting tools to find
out.
</p>
<p data-js="instructions">
Check the package.json for more information about linting commands.
</p>
<ul>
<li class="card" data-js="card">
<p>Click this arrow</p>
<button type="button" data-js="button">
<svg
data-js="arrow"
xmlns="http://www.w3.org/2000/svg"
height="48"
width="48"
>
<path d="m24 30.75-12-12 2.15-2.15L24 26.5l9.85-9.85L36 18.8Z" />
</svg>
</button>
<a data-js="link" class="hidden" href="https://pokeapi.co/"
>Go here to see a cool API</a
>
</li>
<li class="card" data-js="card">
<p>Or click this arrow</p>
<button type="button" data-js="button">
<svg
data-js="arrow"
xmlns="http://www.w3.org/2000/svg"
height="48"
width="48"
>
<path d="m24 30.75-12-12 2.15-2.15L24 26.5l9.85-9.85L36 18.8Z" />
</svg>
</button>
<a data-js="link" class="hidden" href="https://rickandmortyapi.com/"
>Go here to see another cool API</a
>
</li>
<li class="card" data-js="card">
<p>Or maybe this arrow</p>
<button type="button" data-js="button">
<svg
data-js="arrow"
xmlns="http://www.w3.org/2000/svg"
height="48"
width="48"
>
<path d="m24 30.75-12-12 2.15-2.15L24 26.5l9.85-9.85L36 18.8Z" />
</svg>
</button>
<a data-js="link" class="hidden" href="https://ghibliapi.herokuapp.com/"
>Go here to see the coolest API</a
>
</li>
</ul>
</body>
</html>