forked from irenewilliams77/week3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (75 loc) · 1.87 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="" rel="stylesheet" href="main.css" type="text/css" />
<title>Document</title>
<style>
*{
box-sizing: border-box;
}
.column{
float: left;
width: 50%;
padding: 5px;
}
.row::after{
content: "";
clear: both;
display: table;
}
@media screen and (max-width: 200px)
{
.column {
width: 50%;
}
}
</style>
</head>
<body>
<div class="div1">
<p class="text">This is a practice branch</p><br>
<ul>
<li class="one">first</li>
<li class="two">second</li>
<li class="three">third</li>
<li class="four">forth</li>
</ul>
</div>
<button class=Header head--first></button>
<div class="row">
<div class="column">
<img class="dog" src="imgdog.png" alt="image of dog" style="width: 100%; height: auto;">
</div>
<div class="column">
<img class="dog" src="imgdog.png" alt="image of dog" style="width: 100%; height: auto;">
</div>
<style>
<div>
<a img src="panda.jpg" alt="panda" class="pan"></a>
-we
</div>
a:hover {
background-color: blue;}
@keyframes pan {
0% {opacity: 0;}
100% {opacity: 0;}
}
@keyframes pan {
0% {opacity: 0;}
60% {opacity: 0;}
100% {opacity: 1;}
}
.pan {
display: inline-block;
height: 100px;
width: 100px;
animation-name: reset, fade-in;
animation-duration: 3s;
animation-timing-function: ease-in-out;
animation-iteration-count: 5;
animation-delay: 0, 1s;
</style>
</body>
</html>