-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (30 loc) · 826 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Super Hero App</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<h1>Super Hero App</h1>
</header>
<main>
<p>You can search for a super hero like "batman" or "thanos" or... You can generate a random hero</p>
<div id="heroImage">
<img src="">
</div>
<label for="hero">Search for a hero:</label>
<input type="text" id="hero" placeholder="e.g. Batman">
<div class="buttons">
<button id="searchButton" type="submit">Search</button>
<button id="getSuperhero">Random</button>
</div>
</main>
<footer>
<p>© 2023 Super Hero App</p>
</footer>
<script src="script.js"></script>
</body>
</html>