-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (85 loc) · 2.59 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
<!DOCTYPE html><!--tells about the document type to the browser -->
<html><!-- tells inside the block html will be used-->
<head><!--tells the browser info about webpage and how to hold the webpage -->
<meta charset="utf-8"><!--this tells we are using utf 8 -->
<title>personel site by om</title>
</head>
<body>
<table cellspacing="20">
<td><img src="om1.png" alt="om bhayde image"></td>
<td><h1>Om Bhayde</h1>
<p><em>Student at <strong><a href="https://web.mitsgwalior.in/">Mits Gwalior</a></strong></em></p><!--em used for emphasisinf text and strong used for bold-->
<p>I am a student at <strong><a href="https://web.mitsgwalior.in/">Mits Gwalior</a></strong> persuing computer science and design.</p></td>
</table>
<!--
<img src="https://media.licdn.com/dms/image/D4D03AQGqO1KbHpv_fg/profile-displayphoto-shrink_200_200/0/1679856637202?e=1697068800&v=beta&t=yO4ZbzhNjraT7QgHCLHGXcmRYmBgsH5HOmcFyZP3hPA" alt="om bhayde profile pictur">
this can be used to fetch image online-->
<<!-- <video width="320" height="240" controls>
<source src="om2.mp4" type="video/mp4">
</video>
-->
<hr size="4" noshade>
<h1><a href="skills.html">Skills</a></h1>
<h1><a href="hobbies.html">Hobbies</a></h1>
<h1><a href="mycontact.html">My Contacts</a></h1>
<hr size="4" noshade>
<h2>Education</h2>
<table>
<thead>
<th>Year</th>
<th>Education</th>
</thead>
<tbody>
<tr>
<td>2018-19</td>
<td>10th standard</td>
</tr>
<tr>
<td>2020-21</td>
<td>12th standard</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
<br>
<hr size="4" noshade>
<h2>Ratings</h2>
<table>
<tr>
<td><table cellspacing="20">
<tr>
<td>Cricket </td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Playing Flute</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>Coding</td>
<td>⭐</td>
</tr>
</table>
</td>
<td>
<table cellspacing="20">
<tr>
<td>Cricket</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Playing Flute</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>Coding</td>
<td>⭐</td>
</tr>
</table>
</td>
</tr>
</table>
<hr size="4" noshade>
</body>
</html>