-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (71 loc) · 3.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Top 4 Richest Person | Home</title>
<link rel="stylesheet" href="./sass/main.css" />
</head>
<body>
<main class="main-container">
<div class="innerdiv">
<h1>
<img src="./images/flag-icon.png" alt="flag" />TOP 4 RICHEST PERSON IN
THE WORLD 2021
</h1>
<p class="content">
There are a record high 493 newcomers to the list—roughly one new billionaire every 17 hours, including 210 from China and Hong Kong and 98 from the U.S. The richest newcomer, at $38.2 billion, is Miriam Adelson of Nevada, who inherited her husband Sheldon Adelson’s casino empire following his death in January. <!-- Other notable new entrants include movie and TV producer Tyler Perry, Bumble dating app cofounder Whitney Wolfe Herd—the world’s youngest self-made woman billionaire, and Europe’s Guillaume Pousaz, founder of payments firm Checkout.com -->
</p>
<div class="div-group">
<div class="eachdiv">
<img src="./images/jeffbezos.jpeg" alt="img" />
<h3>Jeff Bezos</h3>
<p class="para">
Jeffrey Preston Bezos (/ˈbeɪzoʊs/ BAY-zohss;[1] né Jorgensen; born
January 12, 1964) is an American entrepreneur, media proprietor,
investor, and computer engineer. He is the founder and executive
chairman of Amazon.
</p>
</div>
<div class="eachdiv">
<img src="./images/bill gates.jpg" alt="img" />
<h3>Bill Gates</h3>
<p class="para">
William Henry Gates III (born October 28, 1955) is an American
business magnate, software developer, investor, author, and
philanthropist. He is a co-founder of Microsoft Corporation, along
with his late childhood friend Paul Allen.
</p>
</div>
<div class="eachdiv">
<img src="./images/bernald.webp" alt="img" />
<h3>Bernard Arnault</h3>
<p class="para">
Bernard Jean Étienne Arnault[1] (French: [bɛʁnaʁ ʒɑ̃ etjɛn aʁno];
born 5 March 1949) is a French investor, businessman and art
collector.[2][3] He is the chairman and chief executive of LVMH
Moët Hennessy – Louis Vuitton SE.
</p>
</div>
<div class="eachdiv">
<img src="./images/elon.jpg" alt="img" />
<h3>Elon Musk</h3>
<p class="para">
Elon Reeve Musk FRS (/ˈiːlɒn/ EE-lon; born June 28, 1971) is an
entrepreneur and business magnate. He is the founder, CEO, and
Chief Engineer at SpaceX; early stage investor. Lorem ipsum dolor
sit amet consectetur.
</p>
</div>
</div>
</div>
</main>
<footer class="attribution">
Challenge by
<a href="https://www.frontendmentor.io/profile/GitHub-dev12345" target="_blank"> Frontend Mentor</a>
.Coded by
<a href="https://github.com/GitHub-dev12345"> Dev Rathore</a>.
</footer>
</body>
</html>