-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (63 loc) · 2.31 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
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta lang="en-us">
<title>Talk to a Dog</title>
<link rel="stylesheet" href="./style.css">
<script src="./script.js" defer></script>
</head>
<body class="content">
<main class="main">
<div class="wrapper">
<p>You walk along a path and see a dog park.</p>
<p>Suddenly you're overcome with a desire to share your burdens with a fluffy dog.</p>
<header>
<h1 class="header">Pick a dog to talk to</h1>
</header>
</div>
<div class="selector">
<section class="card" id="smol">
<header>
<h2>Smol</h2>
</header>
<figure>
<img class="card__img" src="./images/chihuahua.jpg" alt="Chihuahua dog">
</figure>
</section>
<section class="card" id="medium">
<header>
<h2>Medium</h2>
</header>
<figure>
<img class="card__img" src="./images/med.jpg" alt="Medium-sized mutt in the middle of a jump">
</figure>
</section>
<section class="card" id="large">
<header>
<h2>Large doggo</h2>
</header>
<figure>
<img class="card__img" src="./images/labrador.jpg" alt="Chocolate-colored lab lying in the grass">
</figure>
</section>
</div>
<div class="response">
<section class="card" id="return">
<figure>
<img class="card__img" src="./images/two.jpg" alt="Two dogs running">
<figcaption class="card__caption">↻ try again</figcaption>
</figure>
</section>
<p class="response__text"></p>
</div>
</main>
<footer class="footer">
<nav>
<p>© <a href="https://github.com/paninebaluy/mixed-messages" target="_blank">paninebaluy</a></p>
<p>pictures: <a href="https://unsplash.com/" target="_blank">unsplash</a></p>
</nav>
</footer>
</body>
</html>