-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Angela Marquee</title>
</head>
<body>
<h1>Angela Marquee</h1>
<div class="marquee">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Angela_Merkel_2019_cropped.jpg/429px-Angela_Merkel_2019_cropped.jpg" alt="Angela Marquee" />
</marquee>
<style>
body {
/* max-width: 800px; */
margin: auto;
text-align: center;
font-family: sans-serif;
}
img {
max-width: 400px;
}
.marquee {
margin: auto;
/* background-color: red; */
color: white;
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
}
.marquee p, .marquee img {
display: inline-block;
padding-left: 100%;
animation: marquee 10s linear infinite;
}
@keyframes marquee {
0% { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}
</style>
</body>
</html>