forked from thinkful-ei-macaw/pen-cat-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (57 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
div{
width:300px;
padding:30px;
margin: auto;
}
body{
background-color: blue;
border:5px solid black;
width:300px;
padding:20px;
margin:auto;
}
h2 {
text-align: center;
}
p{
text-align: center;
}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Cat Carousel Drill</title>
<link rel="shortcut icon" href="#">
<link rel="stylesheet" href="index.css">
</head>
<body>
<main>
<h2>Cat Carousel</h2>
<p>I had work on this and came to a conclusion on how this "click" button works, this was very confusing but I had to
read and slowly put the puzzle together. I realize I had to have a element to click on the images of the cats. This
could have taken 30 minutes for some people, but I am very new at this. Please bare with me.
</p>
<div><p>
<p>
Click on image as a link: <a class="thumbnail" href="https://www.etsy.com/market/cat_lover">
<img border="0" alt="An orange-eyed grey cat stretches toward the camera." src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/t-65/cat1.jpg"
width="100" height="100"/><img style="-webkit-user-select: none;margin: auto;cursor: zoom-in;" /></a>
<a class="thumbnail" href="https://www.etsy.com/market/cat_lover"><img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/t-65/cat1.jpg" width="120" height="90">
<img style="-webkit-user-select: none;margin: auto;cursor: zoom-in;" />
<a class="thumbnail" href="https://www.etsy.com/market/cat_lover"><img style="-webkit-user-select: none;margin: auto;cursor: zoom-out;"
src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/t-65/cat2.jpg" width="120" height="90">
<img style="-webkit-user-select: none;margin: auto;cursor: zoom-in;" />
<a class="thumbnail" href="https://www.etsy.com/market/cat_lover">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/t-65/cat3.jpg" width="120" height="90">
<img style="-webkit-user-select: none;margin: auto;cursor: zoom-in;" />
<a class="thumbnail" href="https://www.etsy.com/market/cat_lover"></a>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/t-65/cat4.jpg" width="120" height="90">
<img style="-webkit-user-select: none;margin: auto;cursor: zoom-in;" /></a>
</p>
</div>
</main>
</body>
</html>