-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (67 loc) · 2.5 KB
/
index.html
File metadata and controls
79 lines (67 loc) · 2.5 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
<!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>JAI</title>
</head>
<body>
<h1>JAI12</h1>
<p><em><b>THIS IS ITALIC</em></b> and Founder</p>
<br>
<p>i am learning web devlopment</p>
<hr size="3" noshade>
<h3>BOOKS </h3>
<ol><li>Complete here</li></ol>
<ol type="i"><li>This is roman</li></ol>
<ul><li>2ndone</li></ul>
<img src="https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885__340.jpg" alt="IMAGE NOT FOUND">
<p></p>
<img src="WhatsApp Image 2022-04-29 at 4.51.58 PM-removebg-preview.jpg" >
<p></p>
<a href="https://www.youtube.com/">GO TO youtube</a>
<p></p>
<a href="hobbies.html">Go to my hobbies</a>
<hr>
<table border="1" >
<thead>
<tr>
<th>Dates</th>
<th>WORK</th>
</tr>
</thead>
<tbody>
<tr>
<td>2010-2013</td>
<td>Developer</td>
</tr>
<tr>
<td>2010</td>
<td>Reasercher at some institute</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
<hr>
<h3>SKILLS</h3>
<table cellspacing="10">
<thead></thead>
<tbody>
<tr>
<td>APP DEV</td>
<td><img src="https://media.istockphoto.com/vectors/five-yellow-stars-customer-product-rating-icon-fow-web-applications-vector-id1140391316?k=20&m=1140391316&s=612x612&w=0&h=Lm9zyp21cUh0MpW3YAfh5eBRXzmcnhMluSEUcMF2e-Q=" height="20"></td>
<td>TensorFlow</td>
<td><img src="https://media.istockphoto.com/vectors/five-yellow-stars-customer-product-rating-icon-fow-web-applications-vector-id1140391316?k=20&m=1140391316&s=612x612&w=0&h=Lm9zyp21cUh0MpW3YAfh5eBRXzmcnhMluSEUcMF2e-Q=" height="20"></td>
</tr>
<tr>
<td>WEB DEV</td>
<td><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/3_stars.svg/1024px-3_stars.svg.png" height="20"></td>
<td>ML</td>
<td><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/3_stars.svg/1024px-3_stars.svg.png" height="20"></td>
</tr>
</tbody>
</table>
</body>
</html>