-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage.html
49 lines (48 loc) · 1.48 KB
/
image.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"content="width=device-width,initial-scale=1.0">
<meta http-equiv="X-UA-Compatible"content="ie-edge">
<title>Saumya's webpage</title>
</head>
<body>
<h1>Train and passanger details</h1>
<a href="http://google.com">Go to google</a>
<a href="saumya.html"target="_blank"></a>
<img src="https://images.unsplash.com/photo-1586190848861-99aa4a171e90?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8NHx8YnVyZ2VyfGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60" alt="error loading image"width="200" height="200">
<table border="10">
<thead>
<tr>
<th>Name</th>
<th>ticket no</th>
<th>cost</th>
<th>class</th>
</tr>
</thead>
<tbody>
<tr>
<td>saumya</td>
<td>6749</td>
<td>700rs</td>
<td>sleeper</td>
</tr>
</tbody>
</table>
<ul type="circle">
<li>this is first line</li>
<li>this is second line</li>
<li>this is third line</li>
<ul>
<li>nested first line</li>
<li>nested second line</li>
<li>nested third line</li>
</ul>
<li>this is last line</li>
</ul>
<ol type="1">
<li>this is data of student 1</li>
<li>this is data of student 2</li>
</ol>
</body>
</html>