-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (75 loc) · 3.76 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<title>Man-Dex</title>
<link rel= "stylesheet" href="./style/style.css"></head>
<link rel= "stylesheet" href="./style/article-type.css"></head>
<meta charset="UTF-8">
<script src="./script/script.js"></script>
<body>
<header>
<button class="shadow__btn2 shadow__btn" onclick="location.href='contact.html'">Contact</button>
<a href="about.html"><h1>Man-Dex</h1></a>
<button class="shadow__btn1 shadow__btn" onclick="location.href='about.html'">About</button>
</header>
<main>
<key id="article-box" class="article-article">
<h2><u>Article-Key:</u></h2>
<p class="article-projects">Projects</p>
<p class="article-personal">Personal</p>
<p class="article-curriculum">Curriculum</p>
<p class="article-other">Other</p>
</key>
<!--Add articles here--->
<article class="article-projects">
<a href="./content/post-6.html">
<h2>Quantum Optics 2 - Two photons and more <span class="article-param">Author: Paul Mandon | Date: 07/23</span></h2>
<p>Course by Ecole Polytechnique with lecturers Alain Aspect and Michel Brune.</p>
</a>
</article>
<article class="article-personal">
<a href="./content/post-5.html">
<h2>TMB - The Tour du Mont Blanc <span class="article-param">Author: Paul Mandon | Date: 07/23</span></h2>
<p>The TMB is a hiking trail route circling the Mont Blanc Valley. The course is approximately 170 kilometers long with more than
20 000m of vertical drop. We completed the tour in less than a week carrying our own equipment (tent, food, clothes).
</p>
</a>
</article>
<article class="article-projects">
<a href="./content/post-4.html">
<h2>Foundational Question Institute (FQxI) - Essay Competition Submission <span class="article-param">Author: Paul Mandon | Date: 05/23</span></h2>
<p>How could science be different? </p>
<p>To what degree is the science we have today necessarily the way it is versus contingent on the particular history and human societies in which it originated?
What could a science free of prejudice and bigotry have looked like? What can it look like in the future? And how could the process of science be better?</p>
</a>
</article>
<article class="article-projects">
<a href="./content/post-3.html">
<h2 >Quantum Optics 1 - Single Photons <span class="article-param">Author: Paul Mandon | Date: 04/23</span></h2>
<p>Course by Ecole Polytechnique with lecturers Alain Aspect and Michel Brune.</p>
</a>
</article>
<article class="article-other">
<a href="./content/post-2.html">
<h2>MIT Sloan - Quantum Initiative <span class="article-param">Author: Paul Mandon | Date: 01/23</span></h2>
<p>Milti-day course at MIT (Massachussetts Institute of Technology) in the Sloan school of management.
The course was held by Physicist Almog Reshef in partnership with Sam Stanwyck from Nvidia,
Erik Garcell from ClassiQ, and Perminder Singh from AWS.
</p>
</a>
</article>
<article class="article-curriculum">
<a href="./content/post-1.html">
<h2>Internship at Hoverlay in Boston <span class="article-param">Author: Paul Mandon | Date: 01/23</span></h2>
<p>Hoverlay is a small startup focused on AR (Augmented Reality). Their aim is to bring AR to the masses
by providing a plateform where anyone can publish and view AR content in real time.
</p>
</a>
</article>
</main>
<button class="back-to-top" onclick="scrollToTop()">⬆️</button>
<footer>
© 2023 Man-Dex | MIT License
</footer>
</body>
</html>