-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (42 loc) · 1.11 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
<!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>Namaste Javascript on roll</title>
</head>
<style>
div{
min-height:100px;
min-width:100px;
padding:2rem;
border:1px solid black;
}
</style>
<body>
<h1>Namaste Javascript on Binge </h1>
<!-- <button id="click_me">Click</button>
<div id="grandparent">
<div id="parent">
<div id="child"></div>
</div>
</div> -->
<div>
<!-- <ul id="container">
<li id="Laptop">
Laptop
</li>
<li id="Camera">Camera</li>
<li id="Mobile">Mobile</li>
</ul> -->
<form id="container">
<input type="text" onkeyup="magicFunction()">
<!-- <input type="text">
<input type="text"> -->
</form>
<input class="file-type" type="file" accept=".jpeg, .jpg, .png">
</div>
</body>
<script src="index.js"></script>
</html>