-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (52 loc) · 2.07 KB
/
Copy pathindex.html
File metadata and controls
56 lines (52 loc) · 2.07 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
<!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" />
<!-- Favicons -->
<link rel="shortcut icon" type="image/x-icon" href="./Images/meeting.ico">
<!-- Fonts CDN -->
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
</style>
<link rel="stylesheet" href="./CSS/home-page.css" />
<title>JS Interview Questions</title>
</head>
<body>
<div id="main-container1" class="main-container">
<header id="hello-msg">console.log("Best of Luck👍");</header>
<div class="main-parent">
<div id="containerHeader1" class="containerHeader">
<div id="subHeader1" class="subHeaderRows">
<img src="./Images/lime-programmer-2.png" alt="Java Script file icon." />
<p class="headerPara">Javascript Dashboard Questions.</p>
<div id="progress-container">
<progress class="headerProgressBar" max="100" value="72"></progress>
<div id="progressText">72% Done.</div>
</div>
</div>
<div id="subHeader2" class="subHeaderRows">
<p id="subHeader2-para1">Total Questions: 86</p>
<div id="solved-div">
<div id="solved-color"></div>
<p id="solved-para">Solved: 62</p>
</div>
<button id="button1" onclick="myFunction()" class="show-text button"></button>
</div>
</div>
<div class="content-div-parent">
<div id="content-div1" class="no-display">
<a id="contentBox1" class="contentBox" href="./Indexes/Day-1.html">Day-1</a>
<a id="contentBox2" class="contentBox" href="./Indexes/Day-1.html">Day-2</a>
<a id="contentBox3" class="contentBox" href="./Indexes/Day-2">Day-3</a>
<a id="contentBox4" class="contentBox" href="./Indexes/Day-3">Day-4</a>
<a id="contentBox5" class="contentBox" href="./Indexes/Day-4">Day-5</a>
<a id="contentBox6" class="contentBox" href="./Indexes/Day-5">Day-6</a>
</div>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>