-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlecturenotes.html
More file actions
51 lines (47 loc) · 1.5 KB
/
lecturenotes.html
File metadata and controls
51 lines (47 loc) · 1.5 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Multerer Lecture Notes</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="wrapper">
<!-- Header -->
<header>
<div class="profile">
<img src="resources/mm2020.jpg"
alt="Portrait of Michael Multerer"
width="160"
style="border-radius:50%">
<h1>Michael Multerer</h1>
<h3>Università della Svizzera italiana</h3>
<p class="view">
<a href="http://usi.to/3ps">http://usi.to/3ps</a>
</p>
</div>
<nav aria-label="Main navigation">
<ul>
<li><a href="index.html">CV</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="software.html">Software</a></li>
<li><a href="lecturenotes.html">Lecture Notes</a></li>
</ul>
</nav>
</header>
<!-- Main content -->
<main>
<section aria-labelledby="lectures-heading">
<h1 id="lectures-heading">Lecture Notes</h1>
<h2>Scattered Data Approximation</h2>
<p>
<a href="resources/SDA_notes.pdf">Lecture Notes</a>
</p>
</section>
</main>
</div>
</body>
</html>