-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
174 lines (157 loc) · 5.73 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!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>
</head>
<body>
<header>
<h1> Thanos Hatake</h1>
<figure>
<!-- https://www.reddit.com/r/thanosdidnothingwrong/comments/9cdaio/gamora_what_did_it_cost_thanos_about_100000_bucks/ -->
<img src="Thanos.jpg" alt="Thanos" width="300px" height="325px">
<figcaption>The reference link is :<a
href="https://www.reddit.com/r/thanosdidnothingwrong/comments/9cdaio/gamora_what_did_it_cost_thanos_about_100000_bucks/" target="_blank"> Click
Here</a></figcaption>
</figure>
<address>
<p><strong>Contect:</strong> 987-654-3210</p>
<p><strong>Location:</strong> 123 St. 56Av 345/xys</p>
<p><strong>Linkedin:</strong> www.linkedin.com/ThanosHatake_234568900</p>
</address>
</header>
<hr>
<main>
<section id="WorkExperience">
<h2> Work Experience</h2>
<table border="3">
<thead>
<tr>
<th> Duration</th>
<th> Job Title</th>
<th> Company</th>
</tr>
</thead>
<tbody>
<tr>
<td> 10000BC-1986</td>
<td> Movie actor </td>
<td><a href="https://www.marvel.com/" target="_blank"> Marvel</a></td>
</tr>
<tr>
<td> 1987-1989</td>
<td> Fashion Desinger</td>
<td> lemonade</td>
</tr>
<tr>
<td> 1990-1999</td>
<td> Software devolper</td>
<td> Hokage</td>
</tr>
<tr>
<td>2000-2010 </td>
<td>Data Analytics</td>
<td> ABC Company</td>
</tr>
<tr>
<td> 2010-current</td>
<td> senior devolper</td>
<td> Rocket shooter Company</td>
</tr>
</tbody>
</table>
</section>
<hr>
<section id="Skills">
<h2> Skills</h2>
<ol>
<li> Coding
<ul>
<li> Java</li>
<li> Python</li>
<li> C#</li>
<li> C++</li>
</ul>
</li>
<li> Leadership</li>
<li> web designing</li>
<li> Database
<ul>
<li> SQL</li>
<li> Mongodb</li>
</ul>
</li>
<li> Ability to work under pressure.</li>
</ol>
</section>
<hr>
<section id="Hobbie">
<h2> Hobbies</h2>
<ul>
<li> Like to code in free time.</li>
<li> Playing games</li>
<li> Cooking</li>
<li> Drawing</li>
</ul>
</section>
<hr>
<section id="PersonalProjects">
<h2>Personal projects</h2>
<ul>
<li>Went to hackathon on <em> feb/30/2000 </em>and makes a fully working streaming platform.</li>
<li> Held a Personal event of coding competition <strong> TotallyFakeEvent </strong> with the grand prize of 5000$ </li>
<li> Made a official website for a multinational corporation <strong>Random Company </strong> with a team of 8</li>
</ul>
</section>
<hr>
<section id="CarrerGoals">
<h2>Career Goals </h2>
<h3> Short term Goals</h3>
<ul>
<li> Learn a new programming language</li>
<li> Get a high paying Job</li>
<li> Eat better</li>
</ul>
<h3> Long term Goals</h3>
<ul>
<li> Open my own bussiness</li>
<li> Get a stable life.</li>
<li> buy my own house.</li>
</ul>
</section>
<hr>
<section>
<h2> Education</h2>
<table border="4">
<thead>
<tr>
<th>School</th>
<th> Achievement</th>
<th> graduate year</th>
</tr>
</thead>
<tbody>
<tr>
<td>Konhan secondary school</td>
<td> Was Topper</td>
<td> 1950-1960</td>
</tr>
<tr>
<td> Enver high school</td>
<td> win Coding competition</td>
<td> 1961-1971</td>
</tr>
<tr>
<td>Unofficial University</td>
<td> Win presidential election</td>
<td> 1972-1985</td>
</tr>
</tbody>
</table>
</section>
</main>
</body>
</html>