-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLists.html
More file actions
34 lines (33 loc) · 760 Bytes
/
Lists.html
File metadata and controls
34 lines (33 loc) · 760 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Lists</title>
</head>
<body>
<p>List of Courses</p>
<ol>
<li>Artificial Intelligence and Machine Learning</li>
<ul>
<li>Pandas and Numpy</li>
<li>Linear Algebra , Probability and Data Visualization</li>
</ul>
<li>Frontend Fundamentals</li>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
<li>Cybersecurity</li>
<ul>
<li>Cybersecurity Breaches</li>
<li>Vulnerability and Penatation Testing</li>
</ul>
<li>Fundamentals of Python</li>
<ul>
<li>OObjects orianted Programming</li>
<li>Matplotlib</li>
</ul>
</ol>
</body>
</html>