-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
38 lines (34 loc) · 1.51 KB
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="stylesheet" href="project.css">
</head>
<body>
<div class="hero">
<nav>
<img src="pngwing.com.png" class="logo" alt="">
<ul>
<li>
<a href="index.html">HOME</a>
</li>
<li> <a href="About.html">ABOUT</a></li>
<li> <a href="Achievement.html">ACHIEVEMENTS</a></li>
<li> <a href="project.html">PROJECTS</a></li>
<li><a href="hire.html">HIRE ME</a></li>
</ul>
</nav>
<div>
<span class="about_heading">Projects</span>
<ul class="about_detail">
<li>I am currenly doing a SOC project (conducted by WnCC ,IIT BOMBAY). Under this project <br>I am building a E-Commerce Website for VibSpecLab, IIT Bombay.</li>
<li>I am also doing SOS (Summer of Science) project in Algotrading.In this project I am learning <br>and exploring Algotrading concepts in detail.</li>
<li>I have also done a python project in my department introductory course (CS104). <br>In that project I made a python web crawler which crawl a website and extract all links.</li>
</ul>
</div>
</div>
</body>
</html>