-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCourses.html
More file actions
125 lines (115 loc) · 3.79 KB
/
Courses.html
File metadata and controls
125 lines (115 loc) · 3.79 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Om Godse's blog</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: auto;
max-width: 850px;
padding-left: 16px;
padding-right: 16px;
box-sizing: border-box;
font-family: "Source Sans Pro";
}
li {
line-height: 1.5;
letter-spacing: 0.25px;
}
ul.nav-links {
padding: 0;
}
ul.nav-links li {
margin-bottom: 8px;
list-style-type: none;
}
ul.nav-links a {
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1>Courses I’ve taken</h1>
<nav>
<ul class="nav-links">
<li><a href="/">Home</a></li>
</ul>
</nav>
</header>
<main>
<h2>Mechanical</h2>
<ul>
<li>
<h3>Theory</h3>
<ul>
<li>Engineering Drawing</li>
<li>Engineering Mechanics</li>
<li>Thermodynamics</li>
<li>Solid Mechanics</li>
<li>Fluid Mechanics</li>
<li>Kinematics and Dynamics of Machinery</li>
<li>Heat and Mass Transfer</li>
<li>Manufacturing Science 1</li>
<li>Manufacturing Science 2</li>
<li>Modelling and Simulation</li>
<li>Design of Machine Elements</li>
<li>FEM and CFD Theory</li>
<li>Instrumentation</li>
<li>Power and Refrigeration Systems</li>
<li>Machine Drawing and Solid Modelling</li>
<li>Microhydrodynamics</li>
<li>Advanced Topics in Mathematical Tools</li>
</ul>
</li>
<li>
<h3>Lab</h3>
<ul>
<li>Fabrication Lab 1</li>
<li>Fabrication Lab 2</li>
<li>Automation Lab</li>
<li>Fluid Mechanics Lab</li>
<li>Solid Mechanics Lab</li>
<li>Heat Transfer Lab</li>
<li>Manufacturing Lab</li>
<li>Finite Element Methods Lab</li>
<li>Computational Fluid Dynamics Lab</li>
</ul>
</li>
</ul>
<h2>Physics</h2>
<ul>
<li>Modern Physics</li>
<li>Basic Electric Circuits</li>
<li>Physics Lab</li>
<li>Nonlinear Dynamics</li>
<li>Thermodynamics</li>
<li>Quantum Mechanics 1</li>
<li>Atomic and Molecular Physics</li>
</ul>
<h2>Math</h2>
<ul>
<li>Calculus 1</li>
<li>Calculus 2</li>
<li>Elementary Linear Algebra</li>
<li>Differential Equations</li>
<li>Introduction to Probability</li>
<li>Transform Techniques</li>
<li>Introduction to Statistics</li>
<li>Complex Variables</li>
</ul>
<h2>Miscellaneous</h2>
<ul>
<li>Introduction to Programming</li>
<li>Digital Circuits</li>
<li>Basic Electrical Engineering</li>
<li>Fundamentals of Robotics</li>
<li>Molecular and Cellular Biology</li>
<li>Machine Learning for Physical Sciences</li>
</ul>
</main>
</body>
</html>