-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (101 loc) · 4.54 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>My portfolio</h1>
</header>
<div class="bio-dp">
<p class="bio">
Hi, I'm Angshul Sana, a B.Tech CSE student at the University of Engineering and Management Kolkata, passionate about coding and technology. 💻 I'm a dedicated coder with a particular fondness for HTML, CSS, and JavaScript. I find immense satisfaction in crafting visually appealing and functional websites. Beyond web development, I'm also deeply invested in C programming, Python, and the intricacies of data structures & algorithms. Solving complex coding challenges fuels my passion. When I'm not immersed in the world of code, I enjoy sharing my insights and experiences through YouTube videos, aspiring to inspire and assist others on their programming paths.
</p>
<img src="mypic.jpg" alt="angshul" class="dp">
</div>
<div class="exp-edu">
<div class="experience">
<b>Experience</b>
<br>Frontend development
</div>
<div class="edu">
<b>Education</b>
<br>in B.Tech 2nd year
</div>
</div>
<h2>Projects</h2>
<div class="project">
<div class="weather">
<h3>Weather app</h3>
<img src="https://images.unsplash.com/photo-1705077031869-51b60754302a?q=80&w=1109&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="">
<button id="weather-live">Live demo</button>
<button id="weather-git">Github</button>
</div>
<div class="stopwatch">
<h3>Stopwatch</h3>
<img src="https://images.unsplash.com/photo-1704265586142-db3e17d0dea0?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="">
<button id="watch-live">Live demo</button>
<button id="watch-git">Github</button>
</div>
<div class="landing">
<h3>PC shop</h3>
<img src="https://images.unsplash.com/photo-1626218174358-7769486c4b79?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="">
<button id="landing-live">Live demo</button>
<button id="landing-git">Github</button>
</div>
</div>
<h2>About me</h2>
<div class="education">
<div class="college">
<h3>My College</h3>
UEM Kolkata
<img src="https://images.shiksha.com/mediadata/images/1514271161phpDJ0RyN.jpeg" alt="my College" height="150" width="270">
<button id="clg-web">View college</button>
</div>
<div class="school">
<h3>My School</h3>
Basirhat town high school
<img src="https://lh3.googleusercontent.com/p/AF1QipMKFe7ynGMFL5eDpU9TxjlVmbXCRu8VpELjWtRM=s1360-w1360-h1020" alt="my school" height="150" width="270">
<button id="scl-web">View school</button>
</div>
</div>
<h2>Skills</h2>
<div class="skills">
<div class="code">
<h3>Coding in:</h3>
<ul>
<li>C</li>
<li>Python</li>
<li>Matlab</li>
</ul>
</div>
<div class="webd">
<h3>Web development</h3>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
</div>
</div>
<h2>Find me at</h2>
<div class="social-media">
<a href="https://www.youtube.com/@angshul" target="_blank">
<img src="https://img.icons8.com/fluent/48/000000/youtube-play.png" alt="YouTube"> YouTube
</a>
<a href="https://www.facebook.com/angshul4" target="_blank">
<img src="https://img.icons8.com/fluent/48/000000/facebook-new.png" alt="Facebook"> Facebook
</a>
<a href="https://www.linkedin.com/in/angshul4/" target="_blank">
<img src="https://img.icons8.com/fluent/48/000000/linkedin.png" alt="LinkedIn"> LinkedIn
</a>
<a href="mailto:[email protected]">
<img src="https://img.icons8.com/fluent/48/000000/email.png" alt="Email"> Email
</a>
</div>
<script src="script.js"></script>
</body>
</html>