-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomputer.html
More file actions
69 lines (60 loc) · 2.4 KB
/
computer.html
File metadata and controls
69 lines (60 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Computer Science Honor Society Vice President</title>
<style>
body {
background-color: #121212;
color: #FFFFFF;
font-family: Arial, sans-serif;
}
h1 {
font-size: 24px;
}
p {
font-size: 16px;
}
.section {
margin-bottom: 20px;
padding: 20px;
border: 1px solid #444;
}
.container {
max-width: 800px;
margin: 0 auto;
}
.contact {
background-color: #333;
padding: 20px;
border: 1px solid #444;
}
.back-button {
text-align: left;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="back-button">
<a href="index.html">Back to Home</a>
</div>
<div class="section">
<h1>Computer Science Honor Society Vice President</h1>
<p>During my tenure as the Computer Science Honor Society Vice President, one of our successful fundraising initiatives was the Duck Raiser event. We sold ducks to raise funds for the society, supporting various activities and educational events for our members. It was a fun and engaging way to contribute to the growth of our society.</p>
</div>
<div class="section">
<h1>Future Plans</h1>
<p>Looking ahead, the Computer Science Honor Society is committed to spreading the passion for computer science beyond Mineola. Our future plans include expanding our outreach and collaborating with local schools and organizations to promote computer science education. We aspire to create more opportunities for students to explore the exciting world of technology and to nurture the next generation of computer scientists.</p>
</div>
<div class="contact">
<h1>Contact Information</h1>
<p>If you have any questions or need further information, please contact our advisor:</p>
<p><strong>Advisor: Kuri Defide</strong><br>
Email: kdefedi@mineola.k12.ny.us</p>
</div>
</div>
</body>
</html>