-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (100 loc) · 3.98 KB
/
index.html
File metadata and controls
111 lines (100 loc) · 3.98 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Alameen Shajahan - Portfolio</title>
<!-- Add Google Fonts link here -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet" />
<!-- Link to Bootstrap CSS -->
<link href="./bootstrap.min.css" rel="stylesheet">
<link href="./style.css" rel="stylesheet">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#">Alameen Shajahan</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" href="#about">About Me</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 Me</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main Content -->
<main>
<!-- About Me Section -->
<section id="about" class="container py-5">
<h1>About Me</h1>
<p>
Hello! I'm a passionate front-end developer with a strong interest
in creating clean, responsive, and user-friendly websites...
</p>
</section>
<!-- Projects Section -->
<section id="projects" class="container py-5">
<h3 class="text-center my-4">Projects</h3>
<div class="row">
<!-- Project 1 -->
<div class="col-md-4 mb-3">
<div class="card">
<img src="./images/restaurent.jpg" class="card-img-top" alt="Restaurant" />
<div class="card-body">
<h5 class="card-title">Restaurant Website</h5>
<p class="card-text">A restaurant website I developed.</p>
<a href="#" class="btn btn-primary">View More</a>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="col-md-4 mb-3">
<div class="card">
<img src="./images/clothing.jpg" class="card-img-top" alt="E-commerce" />
<div class="card-body">
<h5 class="card-title">Clothing Store</h5>
<p class="card-text">Website for a clothing store.</p>
<a href="#" class="btn btn-primary">View More</a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Me Section -->
<section id="contact" class="container py-5">
<h2 class="text-center mb-4">Contact Me</h2>
<form id="contact-form" action="https://formspree.io/f/mwkajyky" method="POST">
<div class="mb-3">
<label for="name" class="form-label">Your Name</label>
<input type="text" class="form-control" id="name" name="name" required placeholder="Enter your name">
</div>
<div class="mb-3">
<label for="email" class="form-label">Your Email</label>
<input type="email" class="form-control" id="email" name="email" required placeholder="Enter your email">
</div>
<div class="mb-3">
<label for="message" class="form-label">Your Message</label>
<textarea class="form-control" id="message" name="message" required placeholder="Write your message here"></textarea>
</div>
<button type="submit" class="btn btn-primary w-100">Send Message</button>
</form>
</section>
</main>
<!-- Footer -->
<footer class="bg-light text-center text-muted py-3 mt-5">
<p class="mb-0">© 2025 Alameen Shajahan. All rights reserved.</p>
</footer>
<!-- Link to Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>