-
Notifications
You must be signed in to change notification settings - Fork 0
/
lesson10.html
100 lines (76 loc) · 1.46 KB
/
lesson10.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!-- <!doctype html>
<head>
<meta charset="utf-8">
<title>js.bin </title>
</head>
<html>
<body>
a<sup>2</sup> + b<sup>2</sup> = c<sup>2</sup> <br>
log<sub>2</sub>45 <br>
some special symbol in it <br>
©to company <br>
username : <input type = "text"> <br>
a < b <br>
b > c <br>
" hello " <br>
' hello ' <br>
←a <br>
→ a <br>
↑a <br>
↓a <br>
Δa + Δb + Δc
</body>
</html> -->
<!doctype html>
<head>
<title>my first programm</title>
</head>
<html>
<body bgcolor="pink">
<main>
<h1>Web page</h1>
<p>This is first page that i created</p>
<ol>
<li>Ahtasham ali</li>
<li>PG Block</li>
<ol>
<li>Computer Science</li>
<li>History</li>
<li>Philosphy</li>
</ol>
<li>GC University , Lahore</li>
</ol>
<a href="pic.jpg" ><img src="pic.jpg", height="250px" , width="250px"> </a>
<nav>
<a href="#">Home</a> |
<a href="#">Gallery</a> |
<a href="#">Section</a> |
</nav>
</main>
<footer>
<table border="1" , width = 30% ,height = 50%, align="center" >
<tr bgcolor = "yellow">
<th>name</th>
<th>roll no</th>
</tr>
<tr align="center">
<td>ahtasham</td>
<td>117-bscs-19</td>
</tr>
</table>
</footer>
<table border="1">
<tr>
<td>name</td>
<td>games</td>
</tr>
<tr>
<td rowspan="2"> ahtasham</td>
<td>cricket</td>
</tr>
<tr>
<td>kabaddi</td>
</tr>
</table>
</body>
</html>