-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst.html
More file actions
110 lines (60 loc) · 2.15 KB
/
first.html
File metadata and controls
110 lines (60 loc) · 2.15 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<html>
<head>
<title> Cybrom </title>
</head>
<body>
hello world i am Manu Badoniya
<!-- Block tag => h1......h6 , p , li
Inline tag => i , u , b , sup , sub , mark , strong ,em -->
<h1> hello </h1>
<h2> hello </h2>
<h4> hello </h4>
<h1> list of two types </h1>
<h2> order list=> a , A , I , i </h2>
<h2> unorder list => disc , circle , square </h2>
Attributes => <openingtag attributes -name="value" >a</openingtag>
<ol>
<img src="https://tse4.mm.bing.net/th/id/OIP.DMjmM1ROE5kH4AaoRGw3mgHaEK?pid=Api&P=0&h=180" alt="">
<img src="https://tse2.mm.bing.net/th/id/OIP.Yj37YzzXd_dZWH6xS63dPwHaE8?pid=Api&P=0&h=180" alt="" width="100px" height ="150px">
<video src="video rabit.mp4" width ="500px" controls muted autoplay loop ></video>
<video src="naruto.mp4"width ="600px" control muted autoplay loop ></video>
<li>apple </li>
<li> banana </li>
</ol>
<!-- table
table tr th td -->
<!-- dgssg -->
<br> <br> <br> <br>
<table border = "2" style =width:100%; text-align:center ; border-collapse:collapse; ">
<tr>
<th>Roll no </th>
<th>Name </th>
<th>City </th>
<th> fees </th>
</tr>
<tr>
<td>1</td>
<td> bhola </td>
<td> blopal </td>
<td> 1000 </td>
<td rowspan="3">4000</td>
</tr>
<tr>
<td>2</td>
<td>vipen</td>
<td> khandwa </td>
<td>4000</td>
<td rowspan="3">4000</td>
</tr>
<tr>
<td>3</td>
<td>rakesh</td>
<td> sagar </td>
<td>4000</td>
<td colspan="3">4000</td>
</tr>
</table>
<br> <br> <br> <br>
call aspin or row aspin for marge
</body>
</html>