-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (88 loc) · 2.38 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>Kurs web intro 101</title>
<style>
body {
background-color: #000;
color: #FFFFFF;
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
margin: 0;
padding: 0;
}
a {
color: #FFFFFF;
text-decoration: none;
transition: all 0.3s ease-in-out;
}
a:hover {
color: #FF0000;
text-decoration: underline;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
h1 {
font-size: 48px;
margin-bottom: 32px;
text-align: center;
}
h2 {
font-size: 32px;
margin-top: 64px;
margin-bottom: 16px;
}
ul {
list-style-type: none;
text-align: center;
margin: 0;
padding: 0;
}
li {
margin-bottom: 16px;
}
.link {
display: inline-block;
padding: 12px 24px;
background-color: #FF0000;
border-radius: 4px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
transition: all 0.3s ease-in-out;
}
.link:hover {
background-color: #FFFFFF;
color: #FF0000;
}
.download {
display: inline-block;
padding: 12px 24px;
background-color: #FF0000;
border-radius: 4px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
transition: all 0.3s ease-in-out;
}
.download:hover {
background-color: #FFFFFF;
color: #000000;
}
</style>
</head>
<body>
<div class="container">
<h1>Pliki</h1>
<h2>Zadania domowe</h2>
<ul>
<li><a href="https://github.com/WebAce-Group/web-intro-101/blob/main/zadanie-1.md" class="link">Zadanie domowe 1</a></li>
<li><a href="https://github.com/WebAce-Group/web-intro-101/blob/main/zadanie-2.md" class="link">Zadanie domowe 2</a></li>
<li><a href="https://github.com/WebAce-Group/web-intro-101/blob/main/zadanie-3.md" class="link">Zadanie domowe 3</a></li>
<li><a href="https://github.com/WebAce-Group/web-intro-101/blob/main/zadanie-4.md" class="link">Zadanie domowe 4</a></li>
</ul>
</div>
</body>
</html>