-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCOME_AND_TAKE_IT.html
More file actions
55 lines (55 loc) · 1.44 KB
/
COME_AND_TAKE_IT.html
File metadata and controls
55 lines (55 loc) · 1.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>COME AND TAKE IT</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
.flag {
width: 300px;
height: 200px;
background-color: white;
border: 2px solid #333;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 20px;
}
.star {
font-size: 40px;
line-height: 1;
}
.marquee-container {
width: 80%;
overflow: hidden;
background-color: #ddd;
padding: 10px 0;
border-radius: 15px;
}
.text {
font-size: 24px;
font-weight: bold;
text-align: center;
}
</style>
</head>
<body>
<div class="flag">
<div class="star">★</div>
<marquee class="marquee-container">
<marquee> <marquee> <marquee> <marquee> <marquee>
</marquee>
<div class="text">COME AND TAKE IT</div>
</div>
</body>
</html>