-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (134 loc) · 6.96 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Berkshire Hathaway Inc.</title>
<link rel="stylesheet" href="styles.css">
<script src="https://use.fontawesome.com/9a114ec0cd.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png">
<link rel="manifest" href="./favicon/site.webmanifest">
</head>
<body>
<div class="wrapper">
<nav>
<input type="checkbox" id="show-search">
<input type="checkbox" id="show-menu">
<label for="show-menu" class="menu-icon"><i class="fa fa-bars"></i></label>
<div class="content">
<div class="company-logo"><a href="index.html">Berkshire
Hathaway
Inc.</a></div>
<ul class="links">
<li>
<a class="desktop-link">Investing</a>
<input type="checkbox" id="show-investing">
<label for="show-investing">Investing</label>
<ul>
<li><a href="reports.html">Quarterly Reports</a></li>
<li><a
href="https://www.sec.gov/cgi-bin/browse-edgar?company=berkshire+hathaway&match=&CIK=&filenum=&State=&Country=&SIC=&owner=exclude&Find=Find+Companies&action=getcompany">SEC
Filings</a></li>
<li><a
href="https://www.berkshirehathaway.com/brkshareholderinfo/transferagentinfo.pdf">Common
Stock Information</a></li>
</ul>
</li>
<li>
<a class="desktop-link">Letters</a>
<input type="checkbox" id="show-letters">
<label for="show-letters">Letters</label>
<ul>
<li><a href="letters.html">Shareholder Letters</a></li>
<li>
<a class="desktop-link" id="sub-menu" >Special
Letters</a>
<input type="checkbox" id="show-special">
<label class="sub-menu" for="show-special">Special Letters</label>
<ul>
<li><a href="https://www.berkshirehathaway.com/SpecialLetters/WEB%20past%20present%20future%202014.pdf">Warren's Lettter</a></li>
<li><a href="https://www.berkshirehathaway.com/SpecialLetters/CTM%20past%20present%20future%202014.pdf">Charlie's Letter</a></li>
</ul>
</li>
</ul>
</li>
<li>
<a class="desktop-link">About Us</a>
<input type="checkbox" id="show-about-us">
<label for="show-about-us">About Us</label>
<ul>
<li><a href="news.html">News Releases</a></li>
<li><a href="governance.html">
Corporate Governance</a></li>
<li><a href="sustainability.html">
Sustainability</a></li>
</ul>
</li>
<li>
<a class="desktop-link">More</a>
<input type="checkbox" id="show-more">
<label for="show-more">More</label>
<ul>
<li><a href="https://berkshirewear.com/">Berkshire
Activewear</a></li>
<li><a
href="https://www.ebay.com/itm/185106486239">Celebrating
50 Years</a></li>
</ul>
</li>
</ul>
</div>
<div> </div>
</nav>
</div>
<!-- Content -->
<<h1> Welcome to Berkshire Hathaway</h1>
<div class="center">
<h3 class="intro"> Berkshire Hathaway is a global conglomerate that owns companies in insurance, rail transportation, manufacturing, and retailing. </h3>
</div>
<div class="learn-container">
<a class="learn-box" href="reports.html">
<h3>Investing</h3>
<p class="box-text"> View quarterly earning reports for
Berkshire Hathaway </p>
</a>
<a class="learn-box" href="letters.html">
<h3> Letters</h3>
<p class="box-text"> Read letters from Warren Buffet to
Berkshire Hathaway shareholders</p>
</a>
<a class="learn-box" href="news.html">
<h3> News </h3>
<p class="box-text"> Explore news releases from Berkshire
Hathaway and Warren Buffet</p>
</a>
</div>
<h1> Explore our subsidiary companies</h1>
<div class="subsidiary-container">
<a class="subsidiary-box" href="https://www.geico.com/">
<img class="image" src="./assets/geico.png" alt="geico" />
</a>
<a class="subsidiary-box" href="https://www.dairyqueen.com/en-us/">
<img class="image" src="./assets/dq.png" alt="dq" />
</a>
<a class="subsidiary-box" href="https://www.heinz.com/">
<img class="image" src="./assets/heinz.png" alt="heinz" />
</a>
<a class="subsidiary-box" href="https://www.forestriverinc.com/">
<img class="image" src="./assets/fr.png" alt="forest river" />
</a>
<a class="subsidiary-box" href="https://www.bnsf.com/">
<img class="image" src="./assets/railway.png" alt="railway" />
</a>
<a class="subsidiary-box" href="https://www.sees.com/">
<img class="image" src="./assets/sees.png" alt="sees candies" />
</a>
</div>
<div class="footer">
<p> Copyright © 1978-2023 Berkshire Hathaway Inc. </p>
</div>
</body>
</html>