-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathccd.html
More file actions
154 lines (138 loc) · 5 KB
/
Copy pathccd.html
File metadata and controls
154 lines (138 loc) · 5 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AT&T Long Lines & Bell Labs - Charge-Coupled Device (CCD)</title>
<link rel="icon" href="img/favicon.ico">
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
line-height: 1.7;
}
header {
background-color: #003366;
color: white;
text-align: center;
padding: 2em 0;
margin-bottom: 20px;
}
nav {
background-color: #007acc;
color: white;
padding: 0.7em 0;
text-align: center;
margin-bottom: 20px;
}
nav a {
color: white;
text-decoration: none;
padding: 0.7em 1.5em;
display: inline-block;
transition: background-color 0.3s ease;
}
nav a:hover {
background-color: #0056b3;
}
main {
padding: 30px;
max-width: 900px;
margin: 20px auto;
background-color: white;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
.section {
margin-bottom: 40px;
}
.section h2 {
color: #003366;
border-bottom: 3px solid #007acc;
padding-bottom: 0.7em;
margin-bottom: 0.8em;
}
footer {
text-align: center;
padding: 2em 0;
background-color: #003366;
color: white;
position: relative;
bottom: 0;
width: 100%;
}
/* Dropdown Button Styling */
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: rgba(0, 122, 204, 0.9); /* Transparent version of nav color */
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border-radius: 5px;
opacity: 0;
transform: translateY(-10px);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.dropdown-content a {
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: rgba(0, 86, 179, 0.7); /* Darker transparent hover */
}
.dropdown:hover .dropdown-content {
display: block;
opacity: 1;
transform: translateY(0);
}
</style>
</head>
<body>
<header>
<h1>AT&T Long Lines & Bell Labs</h1>
<p>Exploring the Amazing Innovations in Telecommunications</p>
</header>
<nav>
<a href="index.html">Home</a> |
<div class="dropdown">
<a href="#">Tech & Inventions</a>
<div class="dropdown-content">
<a href="technology.html" rel="noreferrer">Tech Overview</a>
<a href="transistor.html" rel="noreferrer">The Transistor</a>
<a href="optical-maser.html" rel="noreferrer">Lasers</a>
<a href="ccd.html" rel="noreferrer">Digital Imaging (CCDs)</a>
<a href="photovoltaic-cell.html" rel="noreferrer">Solar Power</a>
<a href="unix.html" rel="noreferrer">UNIX</a>
</div>
</div> |
<a href="gallery.html" rel="noreferrer">Gallery</a> |
<a href="#discord">Join the Community</a>
</nav>
<main>
<section id="ccd" class="section">
<h2>The Charge-Coupled Device (CCD): Capturing Light</h2>
<p>You know, digital photography wouldn't be what it is today without the charge-coupled device, or CCD. It's a special integrated circuit that's used to record images. And it was another brilliant invention from Bell Labs, created in 1969 by Willard Boyle and George E. Smith.</p>
<p>Think about it – CCDs are the heart of digital cameras, video cameras, all sorts of imaging tech. They take light and turn it into electrical signals, which then get processed to create those images we all love.</p>
</section>
</main>
<footer>
<p>© <span id="year"></span> AT&T Long Lines & Bell Labs Community. <small>Site by juler#5461. All rights reserved.</small></p>
</footer>
<script>
document.addEventListener('DOMContentLoaded', () => {
const currentYear = new Date().getFullYear();
document.querySelector('#year').textContent = currentYear;
});
</script>
</body>
</html>