-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (46 loc) · 1.46 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
<!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" />
<title>Find Dog You Love - Lam Pham</title>
<link rel="stylesheet" href="./main.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-96543695-6"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-96543695-6");
</script>
</head>
<body>
<nav class="my-transition">
<h2>List all breeds</h2>
<div class="btn collapse-menu my-transition">≡</div>
<div class="btn scroll-to-top">↑</div>
</nav>
<div class="main-app">
<header>
<h1>Find Dog You Love</h1>
<p class="sub-title">
List all Dog Breeds Images using
<a href="https://dog.ceo/dog-api/" target="_blank">Dog.CEO API</a> by
<a href="http://about.phamvanlam.com/" target="_blank">Lam Pham</a> -
The Man who loves Dogs.
</p>
</header>
<main>
<div class="grid-wrap"></div>
</main>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./main.js"></script>
</body>
</html>