-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
27 lines (25 loc) · 1.03 KB
/
about.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
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/sidebar.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" class="stylesheet">
<title>موقعي الشخصي</title>
</head>
<body>
<!-- استدعاء ملفات HTML لكل قسم -->
<div id="header-container"></div>
<div id="sidebar-container" style="display: none;"></div>
<div id="main-container"></div>
<div id="footer-container"></div>
<script src="js/header.js"></script>
<script src="js/sidebar.js"></script>
<script src="js/main.js"></script>
<script src="js/footer.js"></script>
</body>
</html>