-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VHHSFC Coding Club Offical Site</title>
<link rel="icon" href="Screen recording 2024-09-11 9.15.00 PM.gif" type="image/x-icon">
<style>
body {
font-family: 'Courier New', Courier, monospace;
margin: 0;
padding: 0;
background-color: #2e2e2e;
color: #f5f5f5;
}
header {
background: #1e1e1e;
padding: 20px;
text-align: center;
border-bottom: 1px solid #333;
}
header h1 {
margin: 0;
font-size: 2em;
}
section {
padding: 20px;
margin: 0 auto;
max-width: 900px;
}
h2 {
border-bottom: 2px solid #4CAF50;
padding-bottom: 5px;
margin-bottom: 20px;
}
p, ul {
line-height: 1.6;
}
a {
color: #4CAF50;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
code {
background: #1e1e1e;
color: #dcdcdc;
padding: 2px 4px;
border-radius: 4px;
}
footer {
background: #1e1e1e;
color: #999;
text-align: center;
padding: 10px 0;
border-top: 1px solid #333;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>VHHSFC Coding Club</h1>
</header>
<section>
<h2>Welcome</h2>
<p>Welcome to the VHHSFC Coding Club! We are a community of passionate coders learning various programming languages and enjoying our time together.</p>
<h2>About Us</h2>
<p>The VHHSFC Coding Club is dedicated to teaching programming skills </p>
<h2>Recently Posted Projects</h2>
<ul>
<li><code>Project 1:</code> Description of Project 1 And URL.</li>
<li><code>Project 2:</code> Description of Project 2 And URL.</li>
<li><code>Project 3:</code> Description of Project 3 And URL.</li>
</ul>
</section>
<footer>
<p>© 2024 VHCS vhcs.us</p>
</footer>
</body>
</html>