-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (54 loc) · 2.34 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alect Prasad | Portfolio</title>
<link rel="stylesheet" href="styles.css">
<script src="scripts.js" async></script>
</head>
<body>
<header>
<h1>Alect Prasad</h1>
<p>Web Developer</p>
</header>
<div class="container">
<section id="about" class="section about">
<h2>About Me</h2>
<p>Hello! I'm Alect Prasad, a web developer with a passion for creating modern, responsive websites and applications. With a strong background in both front-end and back-end development, I enjoy bringing ideas to life in the browser. I strive to write clean, efficient, and maintainable code and am constantly seeking to learn and improve my skills.</p>
</section>
<section id="projects" class="section projects">
<h2>Projects</h2>
<div class="gallery">
<div class="card">
<img src="./assets/wip.jpg">
<h2>Card Title 1</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus imperdiet, nulla et dictum interdum, nisi lorem egestas odio.</p>
</div>
<div class="card">
<img src="./assets/wip.jpg">
<h2>Card Title 2</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus imperdiet, nulla et dictum interdum, nisi lorem egestas odio.</p>
</div>
<div class="card">
<img src="./assets/wip.jpg">
<h2>Card Title 3</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus imperdiet, nulla et dictum interdum, nisi lorem egestas odio.</p>
</div>
<div class="card">
<img src="./assets/wip.jpg">
<h2>Card Title 4</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus imperdiet, nulla et dictum interdum, nisi lorem egestas odio.</p>
</div>
<!-- Add more projects as needed -->
</div>
</section>
<section id="contact" class="section contact">
</section>
</div>
<button id="scrollToTopBtn" title="Go to top">↑</button>
<footer>
<p>© 2024 Alect Prasad. All rights reserved.</p>
</footer>
</body>
</html>