-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqualifications.html
129 lines (124 loc) · 7.8 KB
/
qualifications.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!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">
<link rel="shortcut icon" type="image/x-icon" href="Resources/site_icon.png" />
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<title>Chaitanya's Qualifications</title>
</head>
<body>
<header class="text-gray-400 bg-gray-900 body-font">
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
<a class="flex title-font font-medium items-center text-white mb-4 md:mb-0">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
</svg>
<span class="ml-3 text-xl">Chaitanya</span>
</a>
<nav class="md:mr-auto md:ml-4 md:py-1 md:pl-4 md:border-l md:border-gray-700 flex flex-wrap items-center text-base justify-center">
<a class="mr-5 hover:text-white" href="index.html">Home</a>
<a class="mr-5 border-b-2 border-red-500 text-white" href="qualifications.html">Qualifications</a>
</nav>
<a href="https://github.com/ZenithFlux" target="_blank">
<button class="inline-flex items-center bg-white py-1 px-3 focus:outline-none hover:bg-gray-300 rounded-full text-black text-base mt-4 md:mt-0">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="mr-2">
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
</svg>
Github
</button>
</a>
</div>
</header>
<section class="text-gray-400 bg-gray-900 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-wrap -mx-4 -my-8">
<div class="py-8 px-4 lg:w-1/3 mx-auto border-2 rounded-lg mb-16 lg:mb-0">
<div class="h-full flex items-start">
<div class="w-12 flex-shrink-0 flex flex-col text-center leading-none">
<span class="font-medium text-lg leading-none mt-1.5 text-gray-300 title-font">2018</span>
</div>
<div class="flex-grow pl-6">
<h1 class="title-font text-xl font-medium text-red-400 mb-3">10th class (India)</h1>
<p class="leading-relaxed mb-2">School - Titiksha Public School, Sector-11, Rohini, Delhi</p>
<p class="leading-relaxed mb-5">Subjects - Science, Math, Social Studies, English, Hindi</p>
<p class="leading-relaxed text-gray-300">Passed - 91%</p>
</div>
</div>
</div>
<div class="py-8 px-4 lg:w-1/3 mx-auto lg:mx-0 lg:mr-auto border-2 rounded-lg">
<div class="h-full flex items-start">
<div class="w-12 flex-shrink-0 flex flex-col text-center leading-none">
<span class="font-medium text-lg leading-none mt-1.5 text-gray-300 title-font">2020</span>
</div>
<div class="flex-grow px-2.5 pl-6">
<h1 class="title-font text-xl font-medium text-red-400 mb-3">12th class (India)</h1>
<p class="leading-relaxed mb-2">School - St. Xavier's School, Shahbad Daulatpur, Delhi</p>
<p class="leading-relaxed mb-5">Subjects - Physics, Chemistry, Math, Biology, English</p>
<p class="leading-relaxed text-gray-300">Passed - 94%</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="text-gray-400 bg-gray-900 body-font">
<div class="container px-5 mx-auto">
<div class="flex flex-wrap -mx-4">
<div class="py-8 px-4 lg:w-1/3 mx-auto border-2 rounded-lg">
<div class="h-full flex items-start">
<div class="w-12 flex-shrink-0 flex flex-col text-center leading-none">
<span class="font-medium text-lg leading-none mt-1.5 text-gray-300 title-font">2020-24</span>
</div>
<div class="flex-grow px-1.5 pl-6">
<h1 class="title-font text-xl font-medium text-red-400 mb-3">B.Tech (India)</h1>
<p class="leading-relaxed mb-2">Institute -
<a class="hover:text-white" target="_blank" href="https://www.bpitindia.com/">Bhagwan Parshuram Institute of Technology</a>
</p>
<p class="leading-relaxed mb-5">Subject - Computer Science</p>
<p class="leading-relaxed mb-2 text-gray-300">Currently ongoing...</p>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="py-24 bg-gray-900"></div>
<footer class="text-gray-400 bg-gray-900 body-font">
<div class="container px-5 py-8 mx-auto flex items-center sm:flex-row flex-col">
<a class="flex title-font font-medium items-center md:justify-start justify-center text-white">
<img class= "rounded-full w-10 h-10" src="Resources/face.jpg"></img>
<span class="ml-3 text-xl">Chaitanya Lakhchaura</span>
</a>
<p class="text-sm text-gray-400 sm:ml-4 sm:pl-4 sm:border-l-2 sm:border-gray-800 sm:py-2 sm:mt-0 mt-4">Personal site —
<a href="https://twitter.com/knyttneve" class="text-gray-500 ml-1" target="_blank" rel="noopener noreferrer">@chaitanya</a>
</p>
<span class="inline-flex sm:ml-auto sm:mt-0 mt-4 justify-center sm:justify-start">
<a class="text-gray-400" href="https://www.facebook.com/Chaitanya2003" target="_blank">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-3 text-gray-400" href="https://twitter.com/CLakhchaura" target="_blank">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<path d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z"></path>
</svg>
</a>
<a class="ml-3 text-gray-400" href="https://www.instagram.com/chaitanya_lakhchaura/" target="_blank">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<rect width="20" height="20" x="2" y="2" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1112.63 8 4 4 0 0116 11.37zm1.5-4.87h.01"></path>
</svg>
</a>
<a class="ml-3 text-gray-400" href="https://www.linkedin.com//in/chaitanya-lakhchaura" target="_blank">
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="0" class="w-5 h-5" viewBox="0 0 24 24">
<path stroke="none" d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z"></path>
<circle cx="4" cy="4" r="2" stroke="none"></circle>
</svg>
</a>
</span>
</div>
</footer>
</body>
</html>