-
Notifications
You must be signed in to change notification settings - Fork 0
/
updates.html
77 lines (69 loc) · 2.61 KB
/
updates.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>updatespage</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Glegoo:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="updates.css">
</head>
<body>
<div id="logo">
<img src="logo.png" alt="Logo" width="100">
</div>
<div id="updates">Updates</div>
<div class="box-container">
<div class="box">
<h2>Events</h2>
<div class="short-info">
<span>Notification released</span>
<span>Availability of online application</span>
<span>Last date to apply</span>
<span>Correction in OTR details</span>
<span>Withdraw of application</span>
<span>NDA 2024 exam date</span>
<span>Announcement of result</span>
<span>Interview</span>
</div>
</div>
<div class="box">
<h2>NDA I</h2>
<div class="short-info">
<span>20th December 2023</span>
<span>20th December 2023</span>
<span>9th January 2024</span>
<span>10th - 16th January 2024</span>
<span>4th week of March 2024</span>
<span>21st April 2024</span>
<span>1st week of May 2024</span>
<span>May/June 2024</span>
</div>
</div>
<div class="box">
<h2>NDA II</h2>
<div class="short-info">
<span>15th May 2024</span>
<span>15th May 2024</span>
<span>4th June 2024</span>
<span>2nd week of June 2024</span>
<span>June/July 2024</span>
<span>Last week of August 2024</span>
<span>1st September 2024</span>
<span>September 2024</span>
<span>September/October 2024</span>
</div>
</div>
</div>
<!-- Back Button -->
<div class="back-button-container">
<button class="back-button" onclick="goBack()">Back</button>
</div>
<script>
function goBack() {
window.location.href = "index.html"; // Replace "page.html" with the actual URL of the page you want to link to
}
</script>
</body>
</html>