-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (56 loc) · 2.27 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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ANAN Store</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">
<h1>ANAN Store</h1>
</div>
<nav>
<ul>
<li><a href="#home">الرئيسية</a></li>
<li><a href="#games">الألعاب</a></li>
<li><a href="#about">من نحن</a></li>
<li><a href="#contact">اتصل بنا</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero">
<h2>ANAN store</h2>
<p>شحن الألعاب بأسرع وقت وبأفضل الأسعار!</p>
<a href="#games" class="btn">ابدأ الآن</a>
</section>
<section id="games" class="games">
<h2>الألعاب المتاحة</h2>
<div class="game-list">
<div class="game-card">
<img src="https://wallpapercave.com/wp/wp7537001.jpg" alt="Free Fire">
<h3>Free Fire</h3>
<p>شحن العملات داخل اللعبة بسهولة.</p>
<a href="#" class="btn">شحن الآن</a>
</div>
<div class="game-card">
<img src="https://th.bing.com/th/id/OIP.QGZGx2ZRJgz1ibDYNGeKFAHaEK?rs=1&pid=ImgDetMain" alt="Call of Duty">
<h3>Call of Duty</h3>
<p>شحن النقاط داخل اللعبة بسرعة.</p>
<a href="#" class="btn">شحن الآن</a>
</div>
<div class="game-card">
<img src="https://1.bp.blogspot.com/-FiyEbKPkiQY/WsaKHaYXDqI/AAAAAAAAAF0/tVf3Vd8uOFYPpliILLrAc3D2W5mBPOyEwCK4BGAYYCw/s1600/kjkjkj.jpg" alt="Fortnite">
<h3>Fortnite</h3>
<p>شحن V-Bucks بكل أمان.</p>
<a href="#" class="btn">شحن الآن</a>
</div>
</div>
</section>
<footer>
<p>© 2025 GameCharge. جميع الحقوق محفوظة.</p>
</footer>
<script src="script.js"></script>
</body>
</html>