-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (87 loc) · 2.62 KB
/
index.html
File metadata and controls
90 lines (87 loc) · 2.62 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
<!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>😎🔥Uthsav's Website🔥😎</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td><img src="https://media-exp1.licdn.com/dms/image/C4E03AQEt4g3vFFnHpw/profile-displayphoto-shrink_200_200/0/1622521126774?e=1676505600&v=beta&t=hh_T2pFbwCxEmGGlRJVbT3n3hzLwLOJ7jmTa-dohQsE"
alt="Uthsav profile picture" width="200px" height="200px"></td>
<td>
<h1>Uthsav Jain</h1>
<p><em>Third Year <strong>IIIT SONEPAT</strong></em></p>
<p>I am a web developer. I 💙 travelling and binge watching.</p>
</td>
</tr>
</table>
<hr>
<h3>Education</h3>
<ul>
<li>IIIT Sonepat</li>
<li>Neerja Modi School</li>
</ul>
<hr>
<h3>Skills</h3>
<ol type="a">
<li>C++</li>
<li>Python</li>
<li>HTML</li>
<li>CSS</li>
</ol>
<hr>
<table border="2">
<thead>
<tr>
<th>Years</th>
<th>Education</th>
</tr>
</thead>
<tbody>
<tr>
<td>2020</td>
<td>Higher-Secondary School</td>
</tr>
<tr>
<td>2020-2024</td>
<td>B-Tech</td>
</tr>
</tbody>
</table>
<h3>Skill Proficiency</h3>
<table border="3">
<thead>
<tr>
<th>Skill</th>
<th>Proficiency</th>
</tr>
</thead>
<tbody>
<tr>
<td>C</td>
<td>⭐⭐⭐⭐</td>
<td>C++</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Python</td>
<td>⭐⭐⭐</td>
<td>Java</td>
<td>⭐</td>
</tr>
</tbody>
</table>
<br>
<h3>Contact Me:</h3>
<form action="mailto:uthsav23@gmail.com">
<label for="yourName">Name <input type="text"></label><br><br>
<label for="yourPhoneNo">Phone Number <input type="tel" name="yourPhoneNo" id=""></label><br><br>
<label for="yourEmail">Email <input type="email"></label><br><br>
Comments:<br><textarea name="comments" id="" cols="30" rows="10"></textarea><br><br>
<input type="submit">
</form>
</body>
</html>