-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (92 loc) · 3.73 KB
/
index.html
File metadata and controls
101 lines (92 loc) · 3.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://i.ibb.co/W5FfWDn/Asset-1.png" type="image/x-icon">
<title>A. M. Zayed Abdullah | CS Student</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<header class="header">
<div class="container">
<h1 class="logo">A. M. Zayed Abdullah</h1>
<nav>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="hero" class="hero">
<div class="container">
<h2>Hello, I'm <span>A. M. Zayed Abdullah</span></h2>
<p>Aspiring Software Developer | CS Student</p>
<a href="#projects" class="btn">View My Work</a>
</div>
</section>
<section id="about" class="about">
<div class="container">
<h2>About Me</h2>
<p>I am a Computer Science and Engineering student passionate about developing innovative solutions to real-world problems. My areas of interest include web development, artificial intelligence, and competitive programming.</p>
</div>
</section>
<section id="projects" class="projects">
<div class="container">
<h2>Projects</h2>
<div class="project-grid">
<div class="project-card">
<h3>Project 1</h3>
<p>Description of the project and technologies used.</p>
<a href="#" class="btn">View Details</a>
</div>
<div class="project-card">
<h3>Project 2</h3>
<p>Description of the project and technologies used.</p>
<a href="#" class="btn">View Details</a>
</div>
<div class="project-card">
<h3>Project 3</h3>
<p>Description of the project and technologies used.</p>
<a href="#" class="btn">View Details</a>
</div>
</div>
</div>
</section>
<section id="skills" class="skills">
<div class="container">
<h2>Skills</h2>
<div class="skills-list">
<div class="skill">HTML</div>
<div class="skill">CSS</div>
<div class="skill">JavaScript</div>
<div class="skill">Python</div>
<div class="skill">C++</div>
<div class="skill">React</div>
<div class="skill">Node.js</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Contact Me</h2>
<form action="#" method="post" class="contact-form">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</section>
<footer class="footer">
<div class="container">
<p>© 2025 | A. M. Zayed Abdullah | All rights reserved.</p>
</div>
</footer>
</body>
</html>