1
+ <!doctype html>
2
+ <!--
3
+ Material Design Lite
4
+ Copyright 2015 Google Inc. All rights reserved.
5
+
6
+ Licensed under the Apache License, Version 2.0 (the "License");
7
+ you may not use this file except in compliance with the License.
8
+ You may obtain a copy of the License at
9
+
10
+ https://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ Unless required by applicable law or agreed to in writing, software
13
+ distributed under the License is distributed on an "AS IS" BASIS,
14
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ See the License for the specific language governing permissions and
16
+ limitations under the License
17
+ -->
18
+ < html lang ="en ">
19
+
20
+ < head >
21
+ < meta charset ="utf-8 ">
22
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
23
+ < meta name ="description " content ="A portfolio template that uses Material Design Lite. ">
24
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0, minimum-scale=1.0 ">
25
+ < title > MDL-Static Website</ title >
26
+ < link rel ="stylesheet " href ="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en ">
27
+ < link rel ="stylesheet " href ="https://code.getmdl.io/1.3.0/material.grey-pink.min.css " />
28
+ < link rel ="stylesheet " href ="styles.css " />
29
+ < link rel ="stylesheet " href ="https://fonts.googleapis.com/icon?family=Material+Icons ">
30
+ </ head >
31
+
32
+ < body >
33
+ < div class ="mdl-layout mdl-js-layout mdl-layout--fixed-header ">
34
+ < header class ="mdl-layout__header mdl-layout__header--waterfall portfolio-header ">
35
+ < div class ="mdl-layout__header-row portfolio-logo-row ">
36
+ < span class ="mdl-layout__title ">
37
+ < div class ="portfolio-logo "> </ div >
38
+ < span class ="mdl-layout__title "> Notes on All Things Machine Learning and Mathematics</ span >
39
+ </ span >
40
+ </ div >
41
+ < div class ="mdl-layout__header-row portfolio-navigation-row mdl-layout--large-screen-only ">
42
+ < nav class ="mdl-navigation mdl-typography--body-1-force-preferred-font ">
43
+ < a class ="mdl-navigation__link is-active " href ="index.html "> Topics</ a >
44
+ < a class ="mdl-navigation__link " href ="about.html "> About</ a >
45
+ < a class ="mdl-navigation__link " href ="contact.html "> Contact</ a >
46
+ </ nav >
47
+ </ div >
48
+ </ header >
49
+ < div class ="mdl-layout__drawer mdl-layout--small-screen-only ">
50
+ < nav class ="mdl-navigation mdl-typography--body-1-force-preferred-font ">
51
+ < a class ="mdl-navigation__link is-active " href ="index.html "> Topics</ a >
52
+ < a class ="mdl-navigation__link " href ="about.html "> About</ a >
53
+ < a class ="mdl-navigation__link " href ="contact.html "> Contact</ a >
54
+ </ nav >
55
+ </ div >
56
+ < main class ="mdl-layout__content ">
57
+ < div class ="mdl-grid portfolio-max-width ">
58
+ < div class ="mdl-cell mdl-cell--12-col mdl-card mdl-shadow--4dp ">
59
+ < div class ="mdl-card__title ">
60
+ < h2 class ="mdl-card__title-text "> Operating Systems</ h2 >
61
+ </ div >
62
+
63
+ < div class ="mdl-grid portfolio-copy ">
64
+ < a href ="162intro.html "> < h3 class ="mdl-cell mdl-cell--12-col mdl-typography--headline "> Intro</ h3 >
65
+ </ div >
66
+ < div class ="mdl-grid portfolio-copy ">
67
+ < a href ="162threads.html "> < h3 class ="mdl-cell mdl-cell--12-col mdl-typography--headline "> Threads & Processes</ h3 >
68
+ </ div >
69
+ < div class ="mdl-grid portfolio-copy ">
70
+ < a href ="162scheduling.html "> < h3 class ="mdl-cell mdl-cell--12-col mdl-typography--headline "> Scheduling</ h3 >
71
+ </ div >
72
+ < div class ="mdl-grid portfolio-copy ">
73
+ < a href ="162concurrency.html "> < h3 class ="mdl-cell mdl-cell--12-col mdl-typography--headline "> Concurrency & Synchronization</ h3 >
74
+ </ div >
75
+ < div class ="mdl-grid portfolio-copy ">
76
+ < a href ="162virtual.html "> < h3 class ="mdl-cell mdl-cell--12-col mdl-typography--headline "> Virtual Memory</ h3 >
77
+ </ div >
78
+ < div class ="mdl-grid portfolio-copy ">
79
+ < a href ="162fs.html "> < h3 class ="mdl-cell mdl-cell--12-col mdl-typography--headline "> File Systems & Storage</ h3 >
80
+ </ div >
81
+ < div class ="mdl-grid portfolio-copy ">
82
+ < a href ="162db.html "> < h3 class ="mdl-cell mdl-cell--12-col mdl-typography--headline "> Key Value Stores, Databases & Transactions</ h3 >
83
+ </ div >
84
+ </ div >
85
+ </ div >
86
+ < footer class ="mdl-mini-footer ">
87
+ < div class ="mdl-mini-footer__left-section ">
88
+ < div class ="mdl-logo "> Nikhil Dev Deshmudre</ div >
89
+ </ div >
90
+ </ footer >
91
+ </ main >
92
+ </ div >
93
+ < script src ="https://code.getmdl.io/1.3.0/material.min.js "> </ script >
94
+ </ body >
95
+
96
+ </ html >
0 commit comments