-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
89 lines (75 loc) · 2 KB
/
github.html
File metadata and controls
89 lines (75 loc) · 2 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
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
<!DOCTYPE html>
<html>
<head>
<title>Ben's Programming Adventures</title>
<style>
:root {
--primary-color: #333;
--secondary-color: #f5f5f5;
--text-color: #fff;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: var(--secondary-color);
}
header {
background-color: var(--primary-color);
color: var(--text-color);
padding: 20px;
text-align: center;
}
main {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1, h2 {
color: var(--primary-color);
}
.project {
background-color: var(--text-color);
border: 1px solid #ddd;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
}
.project img {
max-width: 100%;
height: auto;
}
footer {
background-color: var(--primary-color);
color: var(--text-color);
padding: 20px;
text-align: center;
}
/* Responsive design */
@media screen and (max-width: 600px) {
main {
padding: 10px;
}
.project {
padding: 10px;
}
}
</style>
</head>
<body>
<header>
<h1>Ben's Programming Adventures</h1>
</header>
<main>
<h1>Welcome to my Github Page</h1>
<div class="project">
<h2>Download All Homebrew Apps</h2>
<p>A script to download (almost) all Wii Homebrew apps. Click <a href="https://github.com/Ben-bit-code207/downloadallhomebrewapps">here</a> to visit the repository.</p>
</div>
<!-- Add more projects here -->
</main>
<footer>
<p>© 2022 Ben's Programming Adventures</p>
</footer>
</body>
</html>