Files
travel-website/egypt/index.html
2026-06-05 16:42:47 +03:00

54 lines
3.0 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<div class="navbar">
<h2 class="logo">EGYPT</h2>
<nav>
<ul>
<li id="li1">Home</li>
<li id="li2">History</li>
<li id="li3">Explore</li>
</ul>
</nav>
<i class="fa-solid fa-bars"></i>
</div>
<div class="row">
<div class="col">
<h1>Egypt</h1>
<p>The Mother of the world & the start Civilization</p>
<button type="button" class="explore" id="btn1">Explore</button>
</div>
<div class="col">
<div class="card card1">
<h5>Abu Simbel</h5>
<p>Abu Simbel is an archaeological site comprising two massive rock-cut temples in southern Egypt on the western bank of Lake Nasser. The twin temples were originally carved out of the mountainside during the reign of Pharaoh Ramesses The Great in the 13th century BC</p>
</div>
<div class="card card2">
<h5>Siwa Oasis</h5>
<p>Siwa Oasis is one of Egypts isolated settlements,Located on an old date trade route, Siwa was an oasis vital to the trade route, as the natural springs and shade giving palm trees gave travelers respite from the desert.</p>
</div>
<div class="card card3">
<h5>Giza Necropolis</h5>
<p>The Pyramids of Giza, situated in the immediate vicinity of the southwestern suburbs of Cairo are the undisputable top attractions in Egypt. The pyramids at Giza were built over the span of three generations by Khufu, his second reigning son Khafre, and Menkaure</p>
</div>
<div class="card card4">
<h5>Red Sea Reef</h5>
<p>The Red Sea, off the coast of Egypt, is one of the most beautiful places in the world to go diving. The waters of the Red Sea are renowned for their spectacular visibility and features some of the most exotic seascapes. With its wide expanse of coral formation on the reefs, it is home to thousands of different sea creatures.</p>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>