-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava_quiz.html
More file actions
76 lines (68 loc) · 2.71 KB
/
java_quiz.html
File metadata and controls
76 lines (68 loc) · 2.71 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
<!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>Quiz on Basics of C</title>
<!-- Your CSS and other links here -->
<link rel="stylesheet" href="style.css">
<!-- Add other links here if needed -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
</head>
<body>
<header class="header">
<section class="flex">
<a href="home.html" class="logo">CODING FRESHERS</a>
<form action="search.html" method="post" class="search-form">
<input type="text" name="search_box" required placeholder="search courses..." maxlength="100">
<button type="submit" class="fas fa-search"></button>
</form>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<div id="search-btn" class="fas fa-search"></div>
<div id="user-btn" class="fas fa-user"></div>
<div id="toggle-btn" class="fas fa-sun"></div>
</div>
<div class="profile">
<img src="images/pic-1.jpg" class="image" alt="">
<h3 class="name" id="userDis1"></h3>
<p class="role">student</p>
<a href="login.html" class="btn">logout</a>
</div>
</section>
</header>
<div class="side-bar">
<div id="close-btn">
<i class="fas fa-times"></i>
</div>
<div class="profile">
<img src="images/pic-1.jpg" class "image" alt="">
<h3 class="name" id="userDis2"></h3>
<p class="role">student</p>
<a href="login.html" class="btn">Logout</a>
</div>
<nav class="navbar">
<a href="home.html"><i class="fas fa-home"></i><span>home</span></a>
<a href="about.html"><i class="fas fa-question"></i><span>about</span></a>
<a href="courses.html"><i class="fas fa-graduation-cap"></i><span>courses</span></a>
<!-- <a href="teachers.html"><i class="fas fa-chalkboard-user"></i><span>teachers</span></a> -->
<a href="contact.html"><i class="fas fa-headset"></i><span>contact us</span></a>
</nav>
</div>
<div class="app">
<!-- Embed the quiz using an iframe -->
<iframe src="quiz3.html" width="100%" height="600" frameborder="0"></iframe>
</div>
<footer class="footer">
© copyright @ <span>CODE FRESHERS</span> | all rights reserved!
</footer>
<!-- Include your JavaScript files -->
<script src="js/script.js"></script>
<script>
var name = localStorage.getItem('name');
document.getElementById('userDis1').innerText = name;
document.getElementById('userDis2').innerText = name;
</script>
</body>
</html>