-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
89 lines (77 loc) · 2.83 KB
/
about.html
File metadata and controls
89 lines (77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>About - DB Yale</title>
<!-- Same CSS file as your index page -->
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/d7310f2557.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- The same fixed sidebar -->
<aside class="sidebar">
<div class="sidebar-logo">
<img
src="DB Logo Outline.png"
alt="DB Yale Logo"
class="logo-img"/>
</div>
<nav class="sidebar-nav">
<a href="indext.html">Home</a>
<a href="about.html">About</a>
<a href="syllabus.html">Syllabus</a>
<a href="collaborate.html">Collaborate</a>
<a href="news.html">News + Events</a>
<a href="meettheboard.html">Meet the Board</a>
<a href="gallery.html" class="active">Gallery</a>
<a href="#">Español</a>
</nav>
<div class="sidebar-footer">
<!-- Social links / license info as before -->
<div class="social-icons">
<a href="https://www.facebook.com/despiertaboricuayale/" target="_blank" class="social-link">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://www.instagram.com/despiertaboricuayale/" target="_blank" class="social-link">
<i class="fab fa-instagram"></i>
</a>
<a href="mailto:[email protected]" class="social-link">
<i class="fas fa-envelope"></i>
</a>
</div> <!-- Correctly closing social-icons div -->
<div class="license">© 2025 DB Yale</div>
</div>
</aside>
<!-- MAIN CONTAINER -->
<div class="main-container">
<!-- Optional hero or banner for the About page -->
<section class="black-hero">
<div class="hero-content">
<h1>About DB Yale</h1>
</div>
</section>
<!-- MAIN CONTENT -->
<main class="main-content">
<section class="content-section">
<h3>Our Mission</h3>
<p>
Despierta Boricua exists to elevate,
empower, and unite the Puerto Rican community—celebrating
our rich heritage, confronting injustice, and crafting a
future where our voices are heard and our dignity is upheld.
</p>
</section>
<section class="content-section">
<h3>Our History</h3>
<p>
Extra section about the background, inception,
and evolution of DB Yale.
</p>
</section>
</main>
</div>
<!-- (Optional) JS for hamburger toggle, etc. -->
<script src="script.js"></script>
</body>
</html>