-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
110 lines (93 loc) · 2.83 KB
/
Index.html
File metadata and controls
110 lines (93 loc) · 2.83 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<title>Ben's Programming Adventures</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
main {
display: flex;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.sidebar {
width: 200px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
padding: 20px;
margin-right: 20px;
}
.sidebar ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.sidebar li {
margin-bottom: 10px;
}
.content {
flex-grow: 1;
}
h1, h2 {
color: #333;
}
.project {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
}
.project img {
max-width: 100%;
height: auto;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Ben's Programming Adventures</h1>
</header>
<main>
<div class="sidebar">
<ul>
<li><a href="github.html">GitHub Projects</a></li>
<li><a href="">Free Chat Programming Course</a></li>
<li><a href="">About Us</a></li>
</ul>
</div>
<div class="content">
<h2 id="github-profile">GitHub Projects</h2>
<div class="project">
<li><a href="https://github.com/Ben-bit-code207">GitHub Profile site</a></li>
</div>
<!-- Add more GitHub projects here -->
<h2 id="free-chat-programming-course">Free Chat Programming Course</h2>
<p>Learn how to build a simple chat application using Python and WebSockets. Click <a href="https://github.com/Ben-bit-code207/chat-programming-course">here</a> to visit the repository.</p>
<h2 id="about-us">About Us</h2>
<p>Ben is a passionate programmer who loves sharing his knowledge and experiences. He has been programming for over 10 years and has a deep love for open-source projects. In his free time, he enjoys teaching programming courses and contributing to the community.</p>
</div>
</main>
<footer>
<p>© 2022 Ben's Programming Adventures</p>
</footer>
</body>
</html>