-
Notifications
You must be signed in to change notification settings - Fork 0
/
my_index.html
177 lines (158 loc) · 4.03 KB
/
my_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
175
176
177
<!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> Yaswanth Mitta personal website</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td>
<img src="mypic.jpeg" alt="Yaswanth's profile pic" width="250" height="300">
</td>
<td>
<h1>Mitta Yaswanth Sai</h1>
<p>
<em>student at
<strong><a href="https://vit.ac.in/">VIT VELLORE</a></strong></em>.
</p>
<p>I am a 1st year student in CSE from vit university. I am a tech enthusiastic. </p>
</td>
</tr>
</table>
<hr>
<h3>Education</h3>
<ul>
<li>
I have done my schooling in Lakshmi English Medium High School.
</li>
<li>
I have completed my Intermediate from Sri Gayatri Junior College.
</li>
<li>
Currently,I am pursuving my B-tech Degree in <a href="https://vit.ac.in/">VIT VELLORE</a>.
</li>
</ul>
<hr>
<h3>Timeline</h3>
<table cellspacing="10">
<thead>
<tr>
<td>
Year
</td>
<td>
Degree
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
2019-March
</td>
<td>
10th class
</td>
</tr>
<tr>
<td>
2019-
2021
</td>
<td>
Intermediate
</td>
</tr>
<tr>
<td>
2021-
2025
</td>
<td>
B-tech Graduation
</td>
</tr>
</tbody>
</table>
<hr>
<h3>Skills</h3>
<table cellspacing="10">
<tr>
<td>
python
</td>
<td>
★★☆☆☆
</td>
</tr>
<tr>
<td>
HTML
</td>
<td>
★☆☆☆☆
</td>
</tr>
<tr>
<td>
Photography
</td>
<td>
★★★☆☆
</td>
</tr>
<tr>
<td>
Cricket
</td>
<td>
★★★☆☆
</td>
</tr>
</table>
<hr>
<p>
<h3>My_hobbies</h3>
<ol>
<li>
Playing Cricket.
</li>
<li>
Listening to Music.
</li>
<li>
Watching Movies and Web-series.
</li>
<li>
Scrolling Insta and YT shorts.
</li>
</ol>
</p>
<hr>
<h3>My Contact Details</h3>
<p>
19-297,<br>Rani Nagar,<br>Oldtown,<br>Anantapur,<br>Andhra Pradesh,<br>India.
<br>
<strong>
Mobile_Number:
</strong>
<em>9701848380</em>
</p>
<hr>
<h3>For Queries</h3>
<form action="mailto:[email protected]" method="post">
<input type="date" name="" id=""><br>
<label for="">Your Name:</label>
<input type="text" name="" id=""><br>
<label for="">Your Email:</label>
<input type="email"><br>
<label for="">Your Message:</label><br>
<textarea name="" id="" cols="30" rows="10"></textarea>
<br>
<input type="submit">
</form>
</body>
</html>