-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathindex.html
100 lines (85 loc) · 1.89 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
91
92
93
94
95
96
97
98
99
100
<!-- Matthias Müller, nvidia -->
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="commonStyle.css">
<head>
<style>
table#quoteTable {
text-align: left;
color: #C93226;
}
table#quoteTable tbody td#einstein {
text-align: right;
font-size: 18px;
}
#quote {
font-family: georgia;
font-size: 28px;
padding: 0px 0px 0px 30px;
}
#portrait {
padding: 0px 30px 0px 0px;
align: left;
}
td {
vertical-align: center;
}
.buttonTen:hover {
background-color: #FF8000;
color: white;
}
.buttonTen {
background-color: #FF0000;
border: none;
color: white;
padding: 8px 8px;
margin: 5px 0px 5px 0px;
border-radius: 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
}
</style>
</head>
<title>Matthias Müller</title>
<body>
<table id = "topTable">
<tr>
<td>
<img src = "portrait.jpg" width = "150px" id = "portrait">
</td>
<td>
<span class = "title" >Matthias Müller</span><br>
<span class = "subtitle">Physics researcher, nvidia</span><br><br>
<a style="text-decoration:none;" href="https://www.youtube.com/channel/UCTG_vrRdKYfrpqCv_WV4eyA">
<img border="0" alt="youtube" src="youtube.jpg" height="50">
</a>
</td>
</tr>
</table>
<br>
<br>
<div style = "font-size: 23px;">My credo:</div>
<br>
<table id = "quoteTable">
<tr>
<td id="quote">
<i>"Everything should be made as simple as possible,<br> but not simpler."</i>
</td>
</tr>
<tr>
<td id="einstein">
Albert Einstein
</td>
</tr>
</table>
<br><br>
<!--<a href = "simplePhysics/main.html" class="button">Simplicity in physics</a>-->
<a href = "tenMinutePhysics/index.html" class="buttonTen">Ten Minute Physics</a>
<a href = "publications/publications.html" class="button">Publications</a>
<a href = "about.html" class="button">About</a>
<a href = "https://www.google.com" class="button">Quit</a>
</body>
</html>