Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed buildings.html
Empty file.
71 changes: 71 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html>
<head>
<style>
table,
th,
td {
border: 1px solid black;
}
</style>
</head>
<body>
<h1>Skyscrapers</h1>
<h2>Tallest buildings in Riyadh:</h2>

<oi>
<li>PIF Tower</li>
<li>Burj Rafal</li>
<li>Kingdom Center</li>
</oi>
<h2>Other Skyscrapers:</h2>

<oi>
<li>Al Faisaliah Center</li>
<li>GCC Bank Hedquarters</li>
<li>Tamken Tower</li>
</oi>

<h2>Tallest buildings in the world</h2>
<p>
Here's a ranking with the <b>tallest</b> buildings in the world as of
2021. <em>Keep in mind this can change.</em>
</p>

<table>
<tr>
<th>Name</th>
<th>Hight</th>
<th>More Info</th>
</tr>
<tr>
<td>Burj Khalifa</td>
<td>828 m</td>
<td>
<a href="https://www.skyscrapercenter.com/building/burj-khalifa/3"
>click here</a
>
</td>
</tr>
<tr>
<td>Shangai Tower</td>
<td>632 m</td>
<td>
<a href="https://www.skyscrapercenter.com/building/shanghai-tower/56"
>click here</a
>
</td>
</tr>
<tr>
<td>Makkh Royal Clock Tower</td>
<td>601 m</td>
<td>
<a
href="https://www.skyscrapercenter.com/building/makkah-royal-clock-tower/84"
>click here</a
>
</td>
</tr>
</table>
</body>
</html>