-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (65 loc) · 2.48 KB
/
Copy pathindex.html
File metadata and controls
69 lines (65 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ahmed Samir - Personal Website</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">AhmedSamir</div>
<nav>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="stats.html">Stats</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="hero">
<div class="container">
<h1>Welcome to My Personal Website</h1>
<p>I'm Ahmed Samir, a passionate developer creating amazing digital experiences.</p>
<a href="about.html" class="btn">Learn More</a>
</div>
</section>
<section id="features">
<div class="container">
<div class="feature">
<i class="fas fa-code"></i>
<h3>Web Development</h3>
<p>Creating responsive and interactive websites with modern technologies.</p>
</div>
<div class="feature">
<i class="fas fa-mobile-alt"></i>
<h3>Mobile Apps</h3>
<p>Developing mobile applications for iOS and Android platforms.</p>
</div>
<div class="feature">
<i class="fas fa-paint-brush"></i>
<h3>UI/UX Design</h3>
<p>Designing beautiful and intuitive user interfaces and experiences.</p>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2023 Ahmed Samir. All rights reserved.</p>
<div class="social">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>