-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy.html
48 lines (43 loc) · 1.35 KB
/
my.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
<!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>Document</title>
</head>
<body>
<h1>This is my firs html </h1>
<img src="photo-1471879832106-c7ab9e0cee23.jpg" alt="" width="300px">
<h2>Second picture</h2>
<img src="photo-1610878180933-123728745d22.jpg" alt="" width="300px">
<div>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere nisi quibusdam natus deleniti explicabo provident dolorum voluptatum earum, quisquam dignissimos eos facilis officiis nam iusto deserunt maxime libero nostrum? Neque.
</p>
</div>
<div>
<table style="border: 2px solid black;">
<tr>
<th>name</th>
<th> address</th>
<th>age</th>
</tr>
<tr>
<td>Rizwan</td>
<td> lahor</td>
<td>25</td>
</tr>
</table>
</div>
<div>
<form>
<label for="fname">First Name</label>
<input type="text" id="fname" name="fname">
<br>
<label for="fname">First Name</label>
<input type="text" id="fname" name="fname">
</form>
</div>
</body>
</html>