-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
96 lines (86 loc) · 2.69 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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" type="image/png" href="https://images.pexels.com/photos/158385/lake-mcdonald-landscape-panorama-sunset-158385.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2">
<title>Group's Projects</title>
<style>
/* background image */
body {
background-image: url('https://images.pexels.com/photos/158385/lake-mcdonald-landscape-panorama-sunset-158385.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
background-repeat: no-repeat;
background-size: cover;
color: cyan;
}
/* padding */
header {
padding: 50px;
}
/* h1 h2 headers */
h1, h2 {
font-family: Arial, sans-serif;
font-weight: bold;
text-align: center;
text-shadow: 2px 2px #000;
}
/* download links */
ul li {
margin: 20px 0;
}
ul li a {
display: inline-block;
padding: 10px 20px;
background-color: #2c3e50;
color: white;
border-radius: 5px;
font-family: Arial, sans-serif;
text-decoration: none;
transition: all 0.2s;
}
ul li a:hover {
background-color: #34495e;
}
ul re a:hover {
background-color: #34495e;
}
/* other buttons */
ul bu {
margin: 20px 0;
}
ul bu a {
display: inline-block;
padding: 10px 20px;
background-color: #2A5BC3;
color: white;
border-radius: 5px;
font-family: Arial, sans-serif;
text-decoration: none;
transition: all 0.2s;
}
ul bu a:hover {
background-color: #34495e;
}
</style>
</head>
<body>
<header>
<h1>My Projects and Games!</h1>
<h2>GitHub for other projects and source code: <a href="https://github.com/GroupXyz2" visit>github</a></h2>
<h3>Links:</h3>
</header>
<main>
<ul>
<li><a href="snakegame" visit>snakegame</a></li>
<li><a href="snakegamenew" visit>snakegamenew</a></li>
<li><a href="tabmanageralpha" visit>tabmanager(alpha)</a></li>
<li><a href="wuerfel2" visit>würfel</a></li>
<li><a href="coin" visit>coinflip</a></li>
<li><a href="calculator" visit>calculator</a></li>
<li><a href="rockpaperscissiors" visit>rockpaperscissiors</a></li>
<li><a href="boxgame" visit>boxgame(reactiontimetest)</a></li>
<li><a href="minecraftquiz" visit>minecraftquiz(unfinished)</a></li>
<bu><a href="downloads" visit>downloads</a></re>
<bu><a href="aboutme" visit>about me</a></bu>
</ul>
</main>
</body>
</html>