-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (72 loc) · 2.71 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
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">
<title>Sameer Sayed - Digital Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<img src="MePP.jpg" alt="Profile Picture" class="profile-pic">
<h1>Sameer Sayed</h1>
<p>Aspiring Data Scientist | Machine Learning & AI Enthusiast | Open-Source Contributor</p>
<div class="links">
<a href="https://www.linkedin.com/in/sameer-0-sayed/" target="_blank">LinkedIn</a>
<a href="https://github.com/sameer-at-git" target="_blank">GitHub</a>
</div>
</div>
</header>
<section class="about">
<div class="container">
<h2>About Me</h2>
<p>
I am a CSE undergraduate passionate about Data Science, AI, and Machine Learning.
I am currently learning advanced Python, full-stack development, and AI frameworks.
</p>
</div>
</section>
<section class="skills">
<div class="container">
<h2>Skills & Learning</h2>
<ul>
<li>Python, Pandas, NumPy, Scikit-Learn, TensorFlow</li>
<li>Machine Learning, Data Science, AI</li>
<li>HTML, CSS, JavaScript, PHP, MySQL</li>
<li>Node.js, React, Django, Flask (Learning)</li>
</ul>
</div>
</section>
<section class="repositories">
<div class="container">
<h2>My GitHub Repositories</h2>
<ul id="repo-list"></ul>
</div>
</section>
<section class="github">
<div class="container">
<h2>GitHub Contributions</h2>
<img src="https://github-profile-summary-cards.vercel.app/api/cards/profile-details?username=sameer-at-git&theme=github_dark" alt="GitHub Contribution Chart" class="github-chart">
</div>
</section>
<section id="learning-journey">
<h2>Continuous Learning Journey</h2>
<p>Here, I document what I learn regularly. I update this section frequently to track my progress.</p>
<div id="entries-container">
<!-- Entries will be loaded here -->
</div>
</section>
<footer>
<p>Made with ❤️ by Sameer Sayed</p>
</footer>
<div id="journal-modal" class="modal">
<div class="modal-content">
<span class="close-modal">×</span>
<div id="modal-content-container"></div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="script.js"></script>
</body>
</html>