-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
112 lines (111 loc) · 4.58 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
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
103
104
105
106
107
108
109
110
111
112
<!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>Portfolio</title>
<link rel="stylesheet" href="Styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
</head>
<body>
<main>
<section class="container about active" id="about">
<div class="main-title">
<h2>My <span>achievements</span></h2>
</div>
<div class="about-container">
<div class="about-item">
<a href = "https://codeforces.com/profile/Abhishek_Srivastava" target = "_blank">
<div class="abt-text">
<p class="large-text">Expert on Codeforces</p>
<p class="small-text">1603 Rating</p>
</div>
</a>
</div>
<div class="about-item">
<a href = "https://www.codechef.com/users/abh_srivastava" target = "_blank">
<div class="abt-text">
<p class="large-text">3⭐ on CodeChef</p>
<p class="small-text">1785 Rating</p>
</div>
</a>
</div>
<div class="about-item">
<a href = "https://www.facebook.com/codingcompetitions/hacker-cup/2022/certificate/1265797564192975" target = "_blank">
<div class="abt-text">
<p class="large-text">2989th Rank</p>
<p class="small-text">Meta Hacker Cup 2022 <br>(India Rank: 889)</p>
</div>
</a>
</div>
<div class="about-item">
<a href = "https://drive.google.com/file/d/1bq1TFZqp2L1bCrWVlBvriO7v1iuqFrHf/view" target = "_blank">
<div class="abt-text">
<p class="large-text">1632nd Rank</p>
<p class="small-text">Google Kick Start <br /> Round G - 2022</p>
</div>
</a>
</div>
</div>
<div class="about-stats">
<h1 class="stat-title">My Skills</h1>
<div class="skills">
<p>Data Structures and Algorithms</p>
<p>Problem Solving</p>
<p>C / C++</p>
<p>Python</p>
<p>H.T.M.L.</p>
<p>C.S.S</p>
<p>MySQL</p>
</div>
</div>
<h1 class="stat-title">My Education</h1>
<div class="timeline">
<div class="timeline-item">
<div class="tl-icon">
<i class="fas fa-university"></i>
</div>
<p class="tl-duration">2021 - present</p>
<h5>Institute of Engineering and Technology<span> - Lucknow</span></h5>
<p>
Bachelor of Technology in Computer Science and Engineering ; <br> C.G.P.A. (Ist Year) : 9.25/10
</p>
</div>
<div class="timeline-item">
<div class="tl-icon">
<i class="fas fa-school"></i>
</div>
<p class="tl-duration">2020 - 2021</p>
<h5>Rani Laxmi Bai Memorial School<span> - Vikas Nagar, Lucknow</span></h5>
<p>
Class XII | 97.6%
</p>
</div>
</div>
</section>
</main>
<div class="controls">
<a href = "index.html">
<div class="control">
<i class="fas fa-home"></i>
</div>
</a>
<a href = "About.html">
<div class="control active-btn">
<i class="fas fa-user"></i>
</div>
</a>
<a href = "Work.html">
<div class="control">
<i class="fas fa-project-diagram"></i>
</div>
</a>
<a href = "Contact.html">
<div class="control">
<i class="fas fa-envelope-open"></i>
</div>
</a>
</div>
</body>
</html>