-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
70 lines (65 loc) · 2.05 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>My Page Title</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>
<body>
<h1 onclick='alert("Rajat Jain")' id="heading"><p>Chapter 1:Walking on road</p></h1>
<a href="https://designer.microsoft.com/" target="_blank">
<img src="Designer.jpeg" alt="Hello" style="width: 300px;">
</a>
<br>
<button onclick='myFunction()'> This is our button </button>
<!-- <button onclick="document.querySelector('body').style.backgroundColor='red'">Click me</button> -->
<br>
<i> You can see people going to the market</i>
<br>
Go to form <a href="form.html">Click here</a>
<br>
To generate similar images go to
<a href="https://designer.microsoft.com/" target="_blank">Designer</a>
<video width="320" height="240" controls loop>
<source src="myvideo.mp4" type="video/mp4">
</video>
<audio controls loop>
<source src="myaudio.mp3" type="audio/mp3">
</audio>
<h3> Grocery List </h3>
<ul type="disc">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<ol type="I">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dd>- black hot drink</dd>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
<h3> Grocery Table </h3>
<table border="1">
<tr>
<th>Item 1</th>
<th>Item 2</th>
<th>Item 3</th>
</tr>
<tr>
<td>Item 1</td>
<td>Item 2</td>
</tr>
<tr>
<td>Item 1</td>
<td colspan="2">Item 2</td>
</tr>
</table>
</body>
<script src="script.js"></script>
</html>