-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (63 loc) · 3.87 KB
/
index.html
File metadata and controls
73 lines (63 loc) · 3.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE">
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22256%22 height=%22256%22 viewBox=%220 0 100 100%22><rect width=%22100%22 height=%22100%22 rx=%2250%22 fill=%22%230058ff%22></rect><path fill=%22%23fff%22 d=%22M72.15 21.33L72.15 21.33Q74.49 22.50 74.90 25.02Q75.30 27.54 73.59 29.61L73.59 29.61Q72.42 31.23 70.58 31.41Q68.73 31.59 66.84 30.69L66.84 30.69Q64.68 29.70 62.30 29.16Q59.91 28.62 57.30 28.62L57.30 28.62Q52.44 28.62 48.62 30.15Q44.79 31.68 42.09 34.52Q39.39 37.35 38.00 41.22Q36.60 45.09 36.60 49.77L36.60 49.77Q36.60 55.26 38.18 59.31Q39.75 63.36 42.54 66.06Q45.33 68.76 49.11 70.07Q52.89 71.37 57.30 71.37L57.30 71.37Q59.73 71.37 62.16 70.92Q64.59 70.47 66.84 69.30L66.84 69.30Q68.73 68.40 70.58 68.67Q72.42 68.94 73.68 70.56L73.68 70.56Q75.48 72.81 74.99 75.20Q74.49 77.58 72.24 78.66L72.24 78.66Q69.90 79.83 67.43 80.60Q64.95 81.36 62.43 81.77Q59.91 82.17 57.30 82.17L57.30 82.17Q50.82 82.17 45.02 80.10Q39.21 78.03 34.67 73.98Q30.12 69.93 27.51 63.86Q24.90 57.78 24.90 49.77L24.90 49.77Q24.90 42.84 27.29 36.99Q29.67 31.14 34.04 26.87Q38.40 22.59 44.34 20.21Q50.28 17.82 57.30 17.82L57.30 17.82Q61.26 17.82 65.04 18.72Q68.82 19.62 72.15 21.33Z%22></path></svg>" />
<link rel="stylesheet" href="css/master.css">
<title>Antra Dodeja's Portfolio</title>
</head>
<body>
<header>
<div class="container">
<h1>Antra Dodeja</h1>
<p>Computer Science | Sukkur IBA</p>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="about">
<div class="container">
<h2>About Me</h2>
<p>I am Computer Science student at Sukkur IBA. I am always looking for ways to improve my coding skills by working on projects and solving problems.
I have experience with languages like Python, Java, and JavaScript, and I'm familiar with tools like Git, HTML, and CSS for building websites. I’m eager to learn new technologies and work with others to create practical solutions.
I’m currently looking for internships or projects where I can gain more experience and grow as a software developer.</p>
</div>
</section>
<section id="projects">
<div class="container">
<h2>My Projects</h2>
<div class="project-card">
<h3>Project 1: Portfolio Website</h3>
<p>A responsive portfolio website built using HTML, CSS, and JavaScript. I created this site to showcase my skills and projects.</p>
</div>
<div class="project-card">
<h3>Project 2: Data Structures Visualizer</h3>
<p>A JavaScript-based visualizer for common data structures like arrays, linked lists, and trees.</p>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Me</h2>
<p>If you want to get in touch, feel free to reach out via LinkedIn:</p>
<p><a href="https://www.linkedin.com/in/antra-dodeja" target="_blank">LinkedIn: Antra Dodeja</a></p>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 Antra Dodeja. All Rights Reserved.</p>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>