-
Notifications
You must be signed in to change notification settings - Fork 4
/
about.html
55 lines (51 loc) · 2.46 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>About</title>
<link rel="stylesheet" type="text/css" href="style/css/about.css">
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"/>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="style/js/jquery.js"></script>
</head>
<link rel="stylesheet" type="text/css" href="style/css/about.css">
<body>
<!-- header section -->
<header class="header">
<div class="container">
<a href="index.html"><i class="fas fa-home"></i></a>
</div>
</header>
<!-- about section -->
<div class="biodata text-center">
<div class="container">
<div class="section-title center">
<h2>About me</h2>
<hr>
</div>
<div class="about">
<p>My name is <b>Rohit Potter</b></p>
<p>23-year-old Programmer. Software Engineer @MAQSoftware, GSoC 2020 @Aboutcode.org, GCI 2018,19 mentor @fossasia.</p>
<p>Have coding skills in Python, C++, Java, SQL. 2* rated on Codechef. I am not into Competitive Coding.</p>
<p>Lightening talk speaker at Fossasia in Fossasia Summit and Jugaadfest.</p>
<p>Contact me on email: rohitpotter12@gmail.com</p>
</div>
</div>
</div>
<!-- footer section -->
<footer class="footer">
<div class="container text-center">
<a href="https://github.com/rpotter12"><i class="fab fa-github"></i></a>
<a href="https://www.facebook.com/rohit.potter.10"><i class="fab fa-facebook"></i></a>
<a href="https://twitter.com/rpotter121998"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/rohit-potter-216473150/"><i class="fab fa-linkedin"></i></a>
<a href="rohitpotter12@gmail.com"><i class="fas fa-envelope"></i></a>
<a href="https://stackoverflow.com/users/9380990/rohit-potter?tab=profile"><i class="fab fa-stack-overflow"></i></a>
<a href="https://www.instagram.com/rohitpotter_12/"><i class="fab fa-instagram"></i></a>
<a href="https://www.hackerrank.com/rohitpotter12"><i class="fab fa-hackerrank"></i></a>
</div>
</footer>
</body>
</html>