34 lines
682 B
HTML
34 lines
682 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Talks</title>
|
||
|
<style>
|
||
|
body {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
text-align: center;
|
||
|
font-size: 2em;
|
||
|
font-family: monospace;
|
||
|
background-color: gainsboro;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: tomato !important;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Marcus Noble - Talks</h1>
|
||
|
|
||
|
<figure>
|
||
|
<iframe src="/PersonalInfrastructure" width="500px" height="300px"></iframe>
|
||
|
<figcaption>
|
||
|
<a href="/PersonalInfrastructure">Personal Infrastructure</a>
|
||
|
</figcaption>
|
||
|
</figure>
|
||
|
|
||
|
</body>
|
||
|
</html>
|