-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (116 loc) · 3.9 KB
/
index.html
File metadata and controls
125 lines (116 loc) · 3.9 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Omar Hamdy Khalil</title>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<!-- Google Font -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
/>
<!--Fac Icon -->
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💻</text></svg>"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="./src/style.css" />
</head>
<body>
<!-- 🌟 Navbar -->
<nav
class="navbar navbar-expand-lg navbar-dark bg-primary shadow-sm sticky-top"
>
<div class="container">
<a class="navbar-brand fw-bold" href="#contact">Omar Hamdy Khalil</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- 💬 Hero Section -->
<header class="bg-light text-center py-5">
<div class="container">
<h1 class="fw-bold mb-3">Welcome to My Project Gallery</h1>
<p class="lead text-muted">
A collection of my HTML, CSS, and JavaScript projects
</p>
<a href="#projects" class="btn btn-primary mt-3">View My Work</a>
</div>
</header>
<!-- 🧩 Projects Section -->
<section id="projects" class="py-5 bg-body-secondary">
<div class="container">
<div class="text-center mb-5">
<h2 class="fw-bold">My Projects</h2>
<p class="text-muted">Click on a project to view it live</p>
</div>
<div class="row" id="projects-container">
<!-- JS will insert project cards here -->
</div>
</div>
</section>
<section id="contact" class="contact-section">
<h2>Contact Me</h2>
<p>
I'm always open to connecting! Feel free to reach out via email or
connect with me on GitHub or LinkedIn.
</p>
<div class="social-buttons" id="contact">
<a href="mailto:vipegypt3000@gmail.com" class="social-btn email">
<i class="fas fa-envelope"></i> Email
</a>
<a
href="https://github.com/ellipticalmusk"
target="_blank"
class="social-btn github"
>
<i class="fab fa-github"></i> GitHub
</a>
<a
href="https://www.linkedin.com/in/omar-khalil-a723b3280/"
target="_blank"
class="social-btn linkedin"
>
<i class="fab fa-linkedin"></i> LinkedIn
</a>
</div>
</section>
<!-- 📩 Contact -->
<footer id="" class="text-white text-center py-4" style="background: linear-gradient(135deg, #1e1e1e, #2a2a2a);;">
<p class="mb-0">© 2025 Omar Hamdy Khalil</p>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom Script -->
<script src="./src/script.js"></script>
</body>
</html>