-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (130 loc) · 4.98 KB
/
index.html
File metadata and controls
136 lines (130 loc) · 4.98 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
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
130
131
132
133
134
135
136
<!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>Resume</title>
<link rel="icon" type="image/x-icon" href="./imgs/favicon.ico">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
</head>
<body>
<div class="outer-container flex">
<div class="container flex">
<div class="profileText">
<div class="imgbox">
<img src="./imgs/Ravi logo.jfif">
</div>
<h1>RAVI RAJPUT</h1>
<h2>Web-Developer</h2>
</div>
<!-- Contact Info -->
<div class="contactInfo">
<h3 class="title">Contact Info</h3>
<ul>
<li class="flexForList">
<span class="icon"><i class="fa fa-phone"></i></span>
<span class="text">8120510237</span>
</li>
<li class="flexForList">
<span class="icon"><i class="fa fa-envelope"></i></span>
<span class="text"><a href="ravi81rajput@gmail.com" target="_blank">ravi81rajput@gmail.com</a></span>
</li>
<li>
<span class="icon"><i class="fa fa-github"></i></span>
<span class="text"><a href="https://github.com/RaviRajput10" target="_blank">Github</a></span>
</li>
<li>
<span class="icon"><i class="fa fa-linkedin-square"></i></span>
<span class="text"><a href="https://www.linkedin.com/in/ravi-rajput-8a97bb208/"></a>LinkedIn</span>
</li>
<li>
<span class="icon"><i class="fa fa-map-marker"></i></span>
<span class="text">Indore</span>
</li>
</ul>
</div>
<!-- Skills -->
<div class="skills">
<h2>Skills</h2>
<h4>Python</h4>
<h4>C & C++, Java</h4>
<h4>HTML5 & CSS3, JAVASCRIPT</h4>
<h4>REACTJS</h4>
</div>
<div class="btn">
<button class="download">DOWNLOAD CV</button>
</div>
</div>
<div class="container-right">
<div class="about">
<h2 class="title2">About Me</h2>
<p>Hi,<br>I am a ReactJs Developer. I Work as a Frontend Developer.</p>
</div>
<div class="education">
<h2 class="title2">Education</h2>
<table class="table1">
<tr>
<th>Standard</th>
<th>Board</th>
<th>Year</th>
<th>Percentage</th>
</tr>
<tr>
<td>10<sup>th</sup></td>
<td>C.B.S.E</td>
<td>2016-2017</td>
<td>7.8 CGPA</td>
</tr>
<tr>
<td>12<sup>th</sup></td>
<td>M.P Board</td>
<td>2018-2019</td>
<td>72.8%</td>
</tr>
</table>
<!-- UG education -->
<h2>Graduation</h2>
<table class="table2">
<tr>
<th>Standard</th>
<th>College</th>
<th>Year</th>
<th>Percentage</th>
</tr>
<tr>
<th>UG</th>
<td>Shri RGP Gujrati Professional Institute Indore</td>
<td>2019-2022</td>
<td>70%</td>
</tr>
<tr style="height:60px">
<th>PG</th>
<td>IPS Academy Indore</td>
<td>2022-running</td>
<td>---</td>
</tr>
</table>
<!--About Internship -->
<h2>Internship</h2>
<p>At Code Better as <em>ReactJs Developer.</em></p>
<p><i>Web Developer Intern.</i></p>
<!-- Projects-->
<h2>Projects</h2>
<ul>
<li>Resume Site
<p>I have made Resume website. I put all my carrer related information on my resume site</p>
</li>
<li>Portfolio Site
<p> I have also made Portfolio site.<br>
In my portfolio site I put all my Experince, Skills, Education, Projects based Information.
</p>
</li>
</ul>
</table>
</div>
</div>
</div>
</body>
</html>