-
Notifications
You must be signed in to change notification settings - Fork 0
/
text.html
41 lines (41 loc) · 918 Bytes
/
text.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>World Cup</title>
<style>
.header {
background: linear-gradient(
90deg,
#2b0848 0%,
#2c0849 10%,
#390552 40%,
#460c5f 65%,
#762d9d 100%
);
}
.middle {
height: 70vh;
background-color: #3c071c;
}
button {
padding: 10px;
background-color: #a40c3b;
}
footer {
height: 10vh;
background-color: #020f2a;
}
</style>
</head>
<body>
<div class="header">
<button>Hello</button>
<img src="assets/Banner Image.png" alt="" />
</div>
<div class="middle"></div>
<footer>Hello</footer>
</body>
</html>