-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (88 loc) · 3.29 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
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
<!--
~ Author: @tridib2003
~ Repository: https://github.com/tridib2003/levelupjava
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Level-Up Java | Home</title>
<link href="styles.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<h1 class="h1-basic">Level-Up Java</h1>
<hr>
<p class="quotes"><strong>Java is C++ without the guns, clubs and knives. ~ James Gosling</strong></p>
<hr>
<div class="container container-center">
<h2 class="h2-basic">
<i class="fa fa-cog fa-spin" aria-hidden="true" style="margin-right: 1rem;"></i>
TOPICS
<i class="fa fa-cog fa-spin" aria-hidden="true" style="margin-left: 1rem;"></i>
</h2>
</div>
<div class="index-std">
<ul class="ul-remove-bullet">
<li>
<div class="btn-container-center">
<button onclick="window.location.href='/class-objects.html';" class="btn-index">
Class & Objects
</button>
</div>
</li>
<li>
<div class="btn-container-center">
<button onclick="window.location.href='/constructors.html';" class="btn-index">
Constructors
</button>
</div>
</li>
<li>
<div class="btn-container-center">
<button onclick="window.location.href='/overloading-overriding.html';" class="btn-index">
Overloading & Overriding
</button>
</div>
</li>
<li>
<div class="btn-container-center">
<button onclick="window.location.href='/exception-handling.html';" class="btn-index">
Exception Handling
</button>
</div>
</li>
<li>
<div class="btn-container-center">
<button onclick="window.location.href='/abstract-class.html';" class="btn-index">
Abstract Class
</button>
</div>
</li>
<li>
<div class="btn-container-center">
<button onclick="window.location.href='/multithreading.html';" class="btn-index">
Multithreading
</button>
</div>
</li>
<li>
<div class="btn-container-center">
<button onclick="window.location.href='/enumeration.html';" class="btn-index">
Enumeration
</button>
</div>
</li>
</ul>
</div>
<br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br>
<footer class="footer">
<p>
Got feedbacks ? <i class="fa fa-envelope" aria-hidden="true"></i>
<a style="color: whitesmoke;" href="mailto:tridibsamanta2010@gmail.com">Drop a mail</a>
</p>
</footer>
</body>
</html>