diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/buildings.html b/buildings.html index e69de29..3474280 100644 --- a/buildings.html +++ b/buildings.html @@ -0,0 +1,58 @@ + + + + + + + Document + + +

Skyscrapers

+ +

Tallest buildings in Riyadh:

+
    +
  1. PIF Tower
  2. +
  3. Burj Rafal
  4. +
  5. Kingdom Center
  6. +
+ +

Other Skyscrapers

+ + +

Tallest buildings in the world

+

Here's a ranking with tallest buildings in the world as of 2021 .Keep in mind this can change.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameHeight More InfoMore Info
Burj Khalifa828mhttps://www.burjkhalifa.ae/en/
Shangai Tower632mhttps://www.burjkhalifa.ae/en/
Makkah Tower Clock Tower601mhttps://www.burjkhalifa.ae/en/
+ + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..0a5b54f --- /dev/null +++ b/style.css @@ -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; +}