-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (95 loc) · 2.88 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
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>B.O.A.T. (BAM OSS Ambassadors Team)</title>
<link rel="stylesheet" href="CSS/site.css">
<style>
/* Basic styling for demonstration purposes */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
background-color: #f4f4f4;
padding: 10px 0;
text-align: center;
}
nav a {
text-decoration: none;
color: #333;
padding: 10px;
}
section {
padding: 20px;
text-align: center;
}
footer {
background-color: #7d2e2e;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.gallery img {
margin: 10px;
max-width: 300px;
max-height: 200px;
}
.gallery img.open-source {
max-width: 150px;
max-height: 150px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to B.O.A.T. (BAM OSS Ambassadors Team)</h1>
</header>
<nav>
<a href="#about">About</a>
<a href="#gallery">Gallery</a>
<a href="#contact">Contact</a>
</nav>
<section id="about">
<h2>About B.O.A.T.</h2>
<p>B.O.A.T. (BAM OSS Ambassadors Team) is a community-driven initiative dedicated to promoting open-source software (OSS) and fostering collaboration within the developer community. We organize events, workshops, and contribute to various open-source projects.</p>
</section>
<section id="gallery">
<h2>Gallery</h2>
<div class="gallery">
<img src="boat_image_1.jpg" alt="Image 1">
<img src="boat_image_2.jpg" alt="Image 2">
<img src="boat_image_3.jpg" alt="Image 3">
<!-- Placeholder for open source images -->
<img src="https://via.placeholder.com/150" alt="Open Source Image 1" class="open-source">
<img src="https://via.placeholder.com/150" alt="Open Source Image 2" class="open-source">
<img src="https://via.placeholder.com/150" alt="Open Source Image 3" class="open-source">
</div>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>For inquiries or collaborations, please reach out to us:</p>
<p>Email: [email protected]</p>
<p>Phone: 1-800-123-4567</p>
</section>
<footer>
<p>© 2024 B.O.A.T. (BAM OSS Ambassadors Team). All rights reserved.</p>
</footer>
</body>
</html>