-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
154 lines (141 loc) · 4.64 KB
/
index.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<title>Your Name</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body id="top">
<div id="cv">
<div class="mainDetails">
<div id="photo">
<img src="user.png" alt="your name" />
</div>
<div id="name">
<h1>Your Name</h1>
<h2>Software Engineer</h2>
</div>
<div id="contactDetails">
<ul>
<li><a href="mailto:[email protected]">[email protected]</a></li>
<li><a href="https://github.com/yourgithubid">https://github.com/yourgithubid</a></li>
<li>+91-00000000000</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
<div id="mainArea">
<section>
<div class="sectionTitle">
<h4>Educational Background:</h4>
</div>
<div class="sectionContent">
<table class="education">
<thead>
<tr>
<th>Course</th>
<th>Institute</th>
<th>Graduation Year</th>
<th>Marks</th>
</tr>
</thead>
<tbody>
<tr>
<td>M.Tech (CSE) </td>
<td><a href="http://yourcollegewebaddress.com">College Name</a></td>
<td>2014</td>
<td>9.1 / 10</td>
</tr>
<tr>
<td>B.Tech (CSE) </td>
<td><a href="http://yourcollegewebaddress.com">College Name</a></td>
<td>2012</td>
<td>90%</td>
</tr>
<tr>
<td>Intermediate (M.P.C)</td>
<td><a href="http://yourcollegewebaddress.com">College Name</a></td>
<td>2008</td>
<td>88%</td>
</tr>
</tbody>
</table><br>
</div>
<div class="clearfix"></div>
</section>
<section>
<div class="sectionTitle">
<h4>Technical Experience:</h4>
</div>
<div class="sectionContent">
<ul>
<li><b>Programming Languages:</b> Java, Javascript, Ruby on Rails</li>
<li><b>Web Technologies:</b> HTML, CSS, jQuery, AngularJS</li>
<li><b>Database:</b> MySQL, MongoDB</li>
<li><b>OS:</b> Windows 7, Linux.</li>
<li><b>Other Packages:</b> Office 2003 / 2007.</li>
</ul><br>
</div>
<div class="clearfix"></div>
</section>
<section>
<div class="sectionTitle">
<h4>Academic Project:</h4>
</div>
<div class="sectionContent">
<div><b>Project title 1</b></div>
<p>
Brief project overview
</p>
<br>
<div><b>Project title 2</b></div>
<p>
Brief project overview
</p>
</div>
<div class="clearfix"></div>
</section>
<section>
<div class="sectionTitle">
<h4>Strengths:</h4>
</div>
<div class="sectionContent">
<ul>
<li>your strength</li>
<li>your strength</li>
<li>your strength</li>
<li>your strength</li>
</ul><br>
</div>
<div class="clearfix"></div>
</section>
<section>
<div class="sectionTitle">
<h4>Personal Details:</h4>
</div>
<div class="sectionContent">
<ul>
<li><b>Permanent Address:</b> your address</li>
<li><b>Languages Known:</b> English, Hindi, Telugu, Urdu</li>
</ul><br>
</div>
<div class="clearfix"></div>
</section>
<section>
<h4>Declaration</h4>
<p class="declaration"> I hereby declare that the above information furnished is true to the best of my knowledge.</p>
<ul>
<li>Place: HYDERABAD</li>
<li>Date:</li>
</ul>
</section>
<div class="bottomDetails text-center">
Your name ♦ <a href="mailto:[email protected]">[email protected]</a> ♦ 0000000000
</div>
</div>
</div>
</body>
</html>