-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
67 lines (63 loc) · 2.74 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
<!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">
<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=Poppins&family=Roboto+Mono:wght@400;500&display=swap"
rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<link rel="stylesheet" href="styles.css">
<script src="index.js"></script>
<title>WEB</title>
</head>
<body>
<h1>SYLLABUS</h1>
<div class="container">
<div class="main" style="margin-top: 30px;">
<div class="element">
<div class="circle circle-black concentric " id="11"></div>
</div>
<div class="element">
<div class="vline"></div>
<div class="circle circle-black" id="12"></div>
</div>
<div class="element">
<div class="vline"></div>
<div class="circle circle-black" id="13"></div>
</div>
<div class="element">
<div class="vline"></div>
<div class="circle circle-black" id="14"></div>
</div>
</div>
<div class="flx-cont">
<div id="1" class="flx-itm">
<div class="content">Fundamentals of Programming and Aptitude</div><span><img src="next.png"
height="25px" width="25px"></span>
</div>
<div id="2" class="flx-itm">
<div class="content">Elementary Data Structures and Algorithms</div><span><img src="next.png"
height="25px" width="25px"></span>
</div>
<div id="3" class="flx-itm">
<div class="content">Basics of Computer Science Core</div><span><img src="next.png" height="25px"
width="25px"></span>
</div>
<div id="4" class="flx-itm">
<div class="content">Resume Project &Interview Redainess</div><span><img src="next.png" height="25px"
width="25px"></span>
</div>
</div>
<div class="cont">
<h4>Elementary Data Structures and Algorithms</h4>
<p><b>About:</b>This module covers fundamentals of DSA. You'll gain problem-solving skills through practical
exercises</p>
<p><b>Topics Covered:</b>ArrayList, Switch cases, Strings, Sorting, StringBuilder, BufferReader, Recursion &
Data Interpretation</p>
</div>
</div>
</body>
</html>