-
Notifications
You must be signed in to change notification settings - Fork 0
/
content_page.html
39 lines (36 loc) · 1.16 KB
/
content_page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Content Page</title>
<link rel="stylesheet" href="contentpage.css">
</head>
<body>
<div class="maincontainer">
<h1>CONTENTS</h1>
<ul>
<li>Chapter 1</li>
<ol type="i">
<li>Introduction To Programming</li>
<li><a href="https://www.w3schools.com/java/java_oop.asp">OOPs Concepts</a></li>
<li>Classes and Objects</li>
<li>Inheritance</li>
</ol>
<li>Chapter 2</li>
<ol type="i">
<li>Polymorphism</li>
<li>Abstraction</li>
<li>Encapsulation</li>
</ol>
<li>Chapter 3</li>
<ol type="i">
<li>Introduction To Programming</li>
<li>OOPs Concepts</li>
<li>Classes and Objects</li>
<li>Inheritance</li>
</ol>
</ul>
</div>
</body>
</html>