-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (87 loc) · 2.89 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
<!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>Vedant's Personal Website - Welcome!</title>
</head>
<body>
<table cellspacing="30">
<tr>
<td><img src="images/profile.png" alt="Vedant personal image" height="250"></td>
<td><h1>Vedant Bhandare</h1>
<p> <em> CSE Undergraduate <br>Indian Institute of Technology, Hyderabad </em> </p>
<p>I like to create websites because it is fun. I also play badminton and <strong> I look super good. </strong> </p>
<p>Find my LinkedIn profile <a href="https://www.linkedin.com/in/vedant-bhandare-282aa7226/">here</a></p></td>
</tr>
</table>
<hr>
<h3>Education</h3>
<ul>
<li>Indian Institute of Technology, Hyderabad</li>
<li>Sanjay Ghodawat IIT and Medical Academy</li>
</ul>
<h3>My hobbies</h3>
<ol>
<li>Spend time with loved ones</li>
<li>Badminton</li>
<li>Reading</li>
</ol>
<h3>Achievements</h3>
<table cellspacing="10">
<thead>
<tr>
<th>Duration</th>
<th>Achievements</th>
</tr>
</thead>
<tbody>
<tr>
<td>2030 - 2033</td>
<td>Sold $120 Mn worht of real-estate in New York City</td>
</tr>
<tr>
<td>2033 - 2034</td>
<td>Made $30 Mn in real-estate profit with no depreciation</td>
</tr>
<tr>
<td>2035 - Present</td>
<td>CEO of Bhandare Holdings Inc.</td>
</tr>
</tbody>
</table>
<h3>Skills</h3>
<table cellspacing="10">
<tr>
<td>Web Development ⭐️⭐️⭐️⭐️⭐️</td>
<td>Codechef ⭐️⭐️⭐️⭐️⭐️</td>
</tr>
<tr>
<td>Android Development ⭐️⭐️⭐️</td>
<td>Blockchain ⭐️⭐️⭐️⭐️⭐️</td>
</tr>
<tr>
<td>Photography ⭐️⭐️⭐️⭐️</td>
<td>Communication Skills ⭐️⭐️⭐️⭐️⭐️</td>
</tr>
</table>
<hr>
<form method="post" action="mailto:[email protected]" enctype="text/plain">
<label>Have your gone through the profile (this webpage)?</label>
<input type="checkbox">
<br>
<label>What's your name?</label>
<input type="text" name="userName">
<br>
<label>Enter your email id</label>
<input type="email" name="userId" id="">
<br>
<label>What are your comments?</label>
<br>
<textarea name="userComments" id="" cols="20" rows="10"></textarea>
<br>
<input type="submit">
</form>
</body>
</html>