-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhi.html
38 lines (37 loc) · 906 Bytes
/
hi.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
<!DOCTYPE html>
<html>
<head>
<title>Good Morning Mumbai</title>
<style>
ul > li{
color:blue;
}
</style>
</head>
<body>
<h1>
<ul>
<li>Notice Me Senpai</li>
<ol>
<li>
<h6 draggable="true">Noticed</h6><!--Nesting h6 in h1 wil make the contnt inside h6 appear as h6 not as h1-->
</li>
<li draggable="true"><img src = "C:\Users\Admin\Downloads\cb.jpg" height = "20%" alt ="C u space Cowboy">
</li>
</ol>
<li>Khutu nai bolnar mi</li>
</ul>
</h1>
<a href = "https://www.youtube.com/watch?v=W4IjEkuAxew"><button>Click Me</button></a>
<form>
<input type = "text" placeholder="Enter yo Text Here" name ="name">
<br>
<button>Kiss Me</button>
<input list ="names" name ="names">
<datalist id ="names">
<option value="Sparsh Amarnani"></option>
<option value ="Bruce Wayne"></option>
</datalist>
</form>
</body>
</html>