-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
34 lines (30 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Harry Potter Characters</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Inconsolata&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Harry Potter Characters</h1>
<span class="container"></span>
</header>
<main id="bg">
<div>
<button data-btn class="btn">Show Random Character</button>
</div>
<div data-res class="res">
</div>
</main>
<footer class="footer">
<p class="pachi"><a class="pachi__com" href="http://pachicodes.com/" target="_blank">Handcrafted with ❤ by @pachicodes ©2019</a> </p>
</footer>
</body>
<script src="js/main.js"></script>
</html>