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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
58 changes: 58 additions & 0 deletions buildings.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!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>Document</title>
</head>
<body>
<h1>Skyscrapers</h1>

<h2>Tallest buildings in Riyadh:</h2>
<ol>
<li> PIF Tower </li>
<li> Burj Rafal </li>
<li>Kingdom Center</li>
</ol>

<h2>Other Skyscrapers</h2>
<ul>
<li>AlFaisaliah Center</li>
<li>GCC Bank Headquarters</li>
<li>Tamkeen Tower</li>
</ul>

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

<table>
<tr>
<th>Name</th>
<th>Height More Info</th>
<th>More Info</th>
</tr>

<tr>
<td>Burj Khalifa</td>
<td>828m</td>
<td><a href="https://www.burjkhalifa.ae/en/">https://www.burjkhalifa.ae/en/</a></td>
</tr>

<tr>
<td>Shangai Tower</td>
<td>632m</td>
<td><a href="https://www.burjkhalifa.ae/en/">https://www.burjkhalifa.ae/en/</a></td>
</tr>

<tr>
<td>Makkah Tower Clock Tower</td>
<td>601m</td>
<td><a href="https://www.burjkhalifa.ae/en/">https://www.burjkhalifa.ae/en/</a></td>
</tr>

</table>


</body>
</html>
19 changes: 19 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
table {
border-collapse: collapse;
width: 100%;
}

th,
td {
text-align: left;
padding: 8px;
}

tr:nth-child(even) {
background-color: #f2f2f2;
}

th {
background-color: rgb(72, 37, 152);
color: white;
}