-
Notifications
You must be signed in to change notification settings - Fork 1
/
10.html
50 lines (43 loc) · 1.28 KB
/
10.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>10</title>
</head>
<style>
div{
height: 100px;
width: 100px;
border: solid black 1px;
}
</style>
<body>
<!-- <button onclick="console.log('button was clicked');console.log('kuldeep')">Click Me</button> -->
<button class="ME" id="ME1" >Click Me1</button>
<br><br><br>
<input id="input1" placeholder="Type something here" type="text">
<button class="ME"id="ME2">Click Me2</button>
<br><br><br>
<form action="/action">
<input id="input2" placeholder="Type something here" type="text">
<button class="ME"id="ME3">Click Me3</button>
</form>
<br><br><br>
<button class="ME">Click Me4</button>
<br><br><br>
<form action="/action" id="formm">
<input type="text" placeholder="username" id="user">
<input type="text" id="pass" placeholder="password">
<button>register</button>
</form>
<h3>Generate random color</h3>
<button class="generate">Generate Color</button>
<div>This is your color</div>
<p>This is a para</p>
<h3>Text Editor</h3>
<p class="para">hoiii</p>
<input type="text" id="write">
<script src="10.js"></script>
</body>
</html>