-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (64 loc) · 1.99 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
/>
<title>Tindog</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="container-wrapper">
<div id="container" class="container">
<header>
<div class="header-icons-wrapper">
<img
src="images/icon-profile.png"
alt="grey shape representing silhouette of person"
class="icon-profile"
/>
<img
src="images/logo.png"
alt="logo is a white paw on a red background"
class="logo"
/>
<img
src="images/icon-chat.png"
alt="grey shape representing a chat bubble"
class="chat-bubble"
/>
</div>
</header>
<main>
<section id="dog-profile-container" class="dog-profile-container">
<!-- JS rendered here -->
</section>
<div class="swipe-icons-container">
<button id="nope-btn" class="nope-btn" aria-label="no-badge">
<img
class="no-icon"
id="no-icon"
src="images/icon-cross.png"
alt="no-badge"
/>
</button>
<button id="like-btn" class="like-btn" aria-label="like-badge">
<img
class="like-icon"
id="like-icon"
src="images/icon-heart.png"
alt="yes-badge"
/>
</button>
</div>
<button class="reset-btn" id="reset-btn">Reset</button>
</main>
</div>
</div>
<script src="js/index.js" type="module"></script>
</body>
</html>