-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathread.html
More file actions
99 lines (83 loc) · 3.7 KB
/
Copy pathread.html
File metadata and controls
99 lines (83 loc) · 3.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Read a Letter | SHARE Space</title>
<link rel="stylesheet" href="css/header.css" />
<link rel="stylesheet" href="css/tabs.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="stylesheet" href="css/read.css" />
<link rel="stylesheet" href="css/global.css" />
</head>
<body>
<header class="header">
<div class="header-left">
<a href="https://www.bmc.org/pediatrics-autism-program" target="_blank">
<img src="images/autismlogo.png" alt="Autism Logo" class="header-logo" />
</a>
</div>
<div class="header-middle">
<div class="header-center">
<h1 class="share-title">SHARE Space</h1>
<p class="share-subtitle">
(Stories, Hope, and Real Experiences from the Autism Community at Boston Medical Center)
</p>
</div>
</div>
<div class="floating-left">
<img src="images/himg1.png" alt="Floating Star" class="floating-icon" />
</div>
<div class="floating-right">
<img src="images/himg3.png" alt="Floating Puzzle" class="floating-icon" />
</div>
</header>
<div class="tabs-header">
<div class="nav-tabs">
<button class="tab-button" onclick="location.href='index.html'">Welcome</button>
<button class="tab-button active">Read a Letter</button>
<button class="tab-button" onclick="location.href='submit.html'">Submit a Letter</button>
</div>
<div class="admin-tab">
<button class="tab-button" onclick="location.href='login.html'">Admin Login</button>
</div>
</div>
<main class="read-main">
<h2 class="read-heading">Read a Letter</h2>
<div class="letter-grid">
<a href="parents.html" class="letter-card">
<img src="images/envelope-icon.png" alt="Envelope" class="letter-image" />
<h3 class="letter-category">Letters from Parents</h3>
<p class="letter-description">Reflections, strength, and advice from parents</p>
</a>
<a href="siblings.html" class="letter-card">
<img src="images/envelope-icon.png" alt="Envelope" class="letter-image" />
<h3 class="letter-category">Letters from Siblings</h3>
<p class="letter-description">Love, confusion, pride — letters from brothers & sisters</p>
</a>
<a href="autistic.html" class="letter-card">
<img src="images/envelope-icon.png" alt="Envelope" class="letter-image" />
<h3 class="letter-category">Letters from Autistic Individuals</h3>
<p class="letter-description">Honest truths and powerful voices from those on the spectrum</p>
</a>
<a href="caregivers.html" class="letter-card">
<img src="images/envelope-icon.png" alt="Envelope" class="letter-image" />
<h3 class="letter-category">Letters from Caregivers</h3>
<p class="letter-description">Patience, exhaustion, joy — the journey of caregiving</p>
</a>
<a href="allies.html" class="letter-card">
<img src="images/envelope-icon.png" alt="Envelope" class="letter-image" />
<h3 class="letter-category">Letters from Allies</h3>
<p class="letter-description">Words of hope from people who care deeply — even from afar</p>
</a>
</div>
</main>
<footer class="footer">
<div class="footer-container">
<a href="https://www.bmc.org/pediatrics-autism-program" target="_blank">
<img src="images/autismlogo.png" alt="Boston Medical Logo" class="footer-logo" />
</a>
</div>
</footer>
</body>
</html>