-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
33 lines (30 loc) · 1.23 KB
/
about.html
File metadata and controls
33 lines (30 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css_about.css">
</head>
<body>
<div class="about-section">
<h1>About My Page</h1>
<p> Hi ., I am Pratik Ghule! </p>
<p> I am computer science student from Nashik,India. </p>
<p> I am currently studying Msc computer science at Bytco college (Savitribai Phule Pune University) </p>
<p> Am also a competitive coder and participated in competitions like </p>
<div class="contest">
<p> Google Code Jam (since 2016) </p>
<p> Google Kickstart </p>
<p> Facebook Hacker Cup (from 2020) </p>
</div>
</div>
<div class="social">
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Add font awesome icons -->
<a href="https://www.facebook.com/pratik.ghule.92" class="fa fa-facebook"> </a>
<a href="https://twitter.com/PratikGhule98" class="fa fa-twitter"> </a>
<a href="http://www.linkedin.com/in/pratik-ghule98" class="fa fa-linkedin"></a>
<a href="https://www.youtube.com/channel/UCwQlpv4gM37Yz61Pdnn1yWw" class="fa fa-youtube"></a>
<a href="https://www.instagram.com/pratik_ghule98/" class="fa fa-instagram"></a>
</div>
</body>
</html>