-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathIntervIew.html
More file actions
108 lines (86 loc) · 2.59 KB
/
IntervIew.html
File metadata and controls
108 lines (86 loc) · 2.59 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<style>
.flex {
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
}
#grandparent {
border: 2px solid red;
width: 600px;
height: 600px;
margin: auto;
}
#child {
border: 2px solid black;
width: 350px;
height: 350px;
margin: auto;
}
#parent {
border: 2px solid blue;
width: 450px;
height: 450px;
margin: auto;
}
#grandchild {
border: 2px solid pink;
width: 150px;
height: 150px;
margin: auto;
}
.card {
display: flex;
flex-direction: column;
border-radius: 10px;
height: 150px;
width: 200px;
border: 2px solid lightcoral;
justify-content: space-around;
padding-left: 10px;
}
.button {
padding: 10px;
border: none;
display: flex;
border-radius: 10px;
}
</style>
</head>
<body>
<h2>Interview Questions</h2>
<!-- <button id="button">button</button> -->
<!-- <div id='grandparent' class="flex">
GrandParent
<div id="parent" class="flex">
Parent
<div id="child" class="flex">
Child
<div id='grandchild' class="flex" onclick="callGrandChild(event)">
Grandchild
</div>
</div>
</div>
</div> -->
<!-- <div class="card" onclick="handleCard(event)">
<div style="height: 50%;width: 100%;">
<img style="height: 100%;width: 100%;"
src='https://cdn.zeptonow.com/production///tr:w-450,ar-2580-2071,pr-true,f-webp,q-80/inventory/product/54099eb2-2d08-4013-a822-a3eebc72f19f-1Bw_fwABv4H42G5A5xr-WfbyeVPXrT2nO.jpeg' />
</div>
<div class="name">Amul Malai Paneer Fresh</div>
<div style="display: flex; justify-content: space-between; padding: 10px;">
<span> Price:1200 </span>
<button id='buttonadd' class="button" onclick="addButton(event)">Add</button>
<input type='checkbox' onchange="checkBoxHandler(event)" onclick="checkBoxHandler(event)" />
</div>
</div> -->
<div id='productContainer'>
</div>
<div id="loader" style="display:none">loading....</div>
<script src='InterviewQuestions.js'>
</script>
</body>
</html>