-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnice_website.html
68 lines (60 loc) · 1.87 KB
/
nice_website.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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Fajna strona</title>
<style type="text/css">
.header {
text-align: left;
font-family: verdana;
background-image: linear-gradient(to left, #47E487, black);
color: #47E487;
padding-top: 1px;
padding-right: 5%;
padding-bottom: 0.5%;
padding-left: 5%;
}
.button {
background-color: black;
border: solid;
border-color: #47E487;
border-radius: 6px;
color: #47E487;
padding: 10px 20px;
text-align: center;
font-size: 20px;
margin: 4px 2px;
transition: 0.3s;
display: inline-block;
text-decoration: none;
cursor: pointer;
}
.button:hover {
opacity: 1;
color: white;
background: #47E487;
border-color: #47E487;
}
body {
font-family: "Work Sans", arial;
margin: 0;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
font-size: 20px;
text-align: center;
background: url("https://cdn.discordapp.com/attachments/895712185530056744/922525433138917486/to_4.png") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
</head>
<body>
<!-- tło i czcionka strony -->
<div class="header">
<a class="button" href="https://youtu.be/dQw4w9WgXcQ">
Free RTX 3090
</a>
</div>
</body>
</html>