-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Normalize.css for crossbrowser compatibility -->
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/7.0.0/normalize.css">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Nova+Mono|Pacifico" rel="stylesheet">
<!-- Own CSS -->
<link rel="stylesheet" href="./assets/css/style.css">
<title>Animal GIFs</title>
</head>
<body>
<h1>Anime GIFs</h1>
<input type="text" placeholder="Type here your favorite anime"><button id="add-anime">Add Anime</button>
<div id="msg"></div>
<div id="btns-topics"></div>
<div id="list"></div>
<!-- jQuery CDN -->
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<!-- Own JavaScript -->
<script src="./assets/js/app.js"></script>
</body>
</html>