-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
47 lines (46 loc) · 1.39 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
<!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>Interview Questions</title>
</head>
<style>
.container {
position: absolute;
left: 0;
right: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 5%;
}
.container .image img {
width: 500px;
height: 50%;
border-radius: 11px;
}
.container_content {
border: 2px solid red;
padding: 20px;
align-items: center;
text-align: center;
border-radius: 11px;
}
</style>
<body>
<!-- <h1>Interview Questions</h1> -->
<div class="container"></div>
</body>
<!-- <script src="./Null & Undefined/index.js"></script> -->
<!-- <script src="./Function scope & Block Scope/index.js"></script> -->
<!-- <script src="./Automatic Semicolon Insertion/index.js"></script> -->
<!-- <script src="./Rest & Spread Operator/index.js"></script> -->
<!-- <script src="./Infinity/index/index.js"></script> -->
<!-- <script src="./What is NaN/index.js"></script> -->
<!-- <script src="./Arrow Function/index.js"></script> -->
<!-- <script src="./Closures/index.js"></script> -->
<script src="./Currying Function/index.JS"></script>
</html>