-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsharehold.html
96 lines (90 loc) · 4.76 KB
/
sharehold.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Annual Meeting Information</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Berkshire Hathaway Inc.</h1>
<address>3555 Farnam Street<br>Omaha, NE 68131</address>
<button class="theme-toggle" onclick="toggleTheme()">🌙</button>
</header>
<div class="nav-container">
<button class="nav-button">Menu</button>
<nav class="nav-menu">
<ul>
<li><a href="index.html">🏠 Home</a></li>
<li><a href="message.html">📜 A Message from Warren E. Buffett</a></li>
<li><a href="news/2024news.html">📰 News Releases</a></li>
<li><a href="reports.html">📄 Annual & Interim Reports</a></li>
<li><a href="sharehold.html">📅 Annual Meeting Information</a></li>
<li><a
href="http://www.sec.gov/cgi-bin/browse-edgar?company=berkshire+hathaway&match=&CIK=&filenum=&State=&Country=&SIC=&owner=exclude&Find=Find+Companies&action=getcompany">🔗
Link to SEC Filings</a></li>
<li><a href="bhenergy/bhenergypresentations.html">⚡ Berkshire Hathaway Energy Investor Presentations</a>
</li>
<li><a href="SpecialLetters/WEBCTMLtr.html">📜 Special Letters from Warren & Charlie</a></li>
<li><a href="letters/letters.html">📬 Warren Buffett's Letters to Shareholders</a></li>
<li><a href="subs/sublinks.html">🔗 Links to Subsidiary Companies</a></li>
<li><a href="wesco/WescoHome.html">📬 Charlie Munger's Letters to Wesco Shareholders</a></li>
<li><a href="govern/govern.html">⚖️ Corporate Governance</a></li>
<li><a href="https://www.ebay.com/itm/185860708853">📖 Celebrating 50 Years of a Profitable
Partnership</a></li>
<li><a href="sustainability/sustainabilityintro.html">🌱 Sustainability</a></li>
<li><a href="brkshareholderinfo/brkshareholderinfo.html">📈 Common Stock Information</a></li>
<li><a href="donate/webdonat.html">🎁 Letters Regarding Gifts of Berkshire Stock</a></li>
<li><a href="activisionltr.pdf">📄 Facts on 2021 Activision Investments</a></li>
<li><a href="http://www.berkshirewear.com">🛍️ Berkshire Activewear</a></li>
</ul>
</nav>
</div>
<main>
<h2>Annual Meeting Information</h2>
<p>Updated April 16, 2024</p>
<p><a href="https://www.berkshirehathaway.com/meet01/visguide2024.pdf">2024 Shareholder Meeting Information</a>
</p>
<p><a href="https://www.berkshirehathaway.com/meet01/2024proxystmt.pdf">2024 Proxy Statement</a></p>
</main>
<footer>
<p>If you have any comments about our WEB page, you can write us at the address shown above. However, due to the
limited number of personnel in our corporate office, we are unable to provide a direct response.</p>
<p><a href="disclaimer.html">Legal Disclaimer</a></p>
<p>Copyright © 1978-2024 Berkshire Hathaway Inc.</p>
<div class="social-links">
<a href="https://www.facebook.com/berkshirehathaway"><i class="fab fa-facebook-square"></i></a>
<a href="https://www.twitter.com/berkshirehathaway"><i class="fab fa-twitter-square"></i></a>
<a href="https://www.linkedin.com/company/berkshirehathaway"><i class="fab fa-linkedin"></i></a>
</div>
</footer>
<button class="back-to-top" onclick="scrollToTop()">Back to Top</button>
<script>
function toggleTheme() {
document.body.classList.toggle('dark-theme');
}
window.addEventListener('scroll', function () {
const backToTopButton = document.querySelector('.back-to-top');
if (window.scrollY > 300) {
backToTopButton.style.display = 'block';
} else {
backToTopButton.style.display = 'none';
}
});
function applyTheme() {
const savedTheme = localStorage.getItem('theme') || 'light';
if (savedTheme === 'dark') {
document.body.classList.add('dark-theme');
} else {
document.body.classList.remove('dark-theme');
}
}
// Apply theme on page load
window.onload = applyTheme;
function scrollToTop() {
window.scrollTo({ top: 0, behavior: 'smooth' });
}
</script>
</body>
</html>