-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (104 loc) · 4.26 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<title>Joshua Heiland | Artificial Intelligence researcher</title>
<link rel="stylesheet" href="./css/styles.css">
<script src="./js/jquery-1.11.3.min.js"></script>
</head>
<body>
<script>
document.body.className += ' fade-out';
$(function() {
$('body').removeClass('fade-out');
});
</script>
<div class="container-fluid">
<nav class="row">
<div class="col-md-4 no-gutter">
<ul class="nav pull-right">
<li role="presentation" class="active"><a href="/">Joshua</a></li>
<li role="presentation"><a href="#writings">Writings</a></li>
</ul>
</div>
</nav>
<header class="row">
<div class="row-height">
<div class="col-xs-12 col-md-4 col-sm-height col-top no-gutter me-image">
<div class="inside inside-full-height me-cover">
</div>
</div>
<div class="col-xs-12 col-md-8 col-sm-height col-bottom no-gutter">
<div class="inside inside-full-height">
<div class="content">
<div class="jumbotron">
<h1>SF-based thinker & <br>artificial intelligence researcher</h1>
<h3>designer, coder, writer</h3>
</div>
</div>
</div>
</div>
</div>
</header>
<section id="writings">
<div class="row">
<div class="col-md-offset-1 col-md-11">
<h3><i>I believe that...</i></h3>
<!-- <h2 class="mk1">
The greatest feat one can strive for<wbr>
is the creation of <i>understanding</i>
where previously there was only information.
</h2> -->
<h2 class="mk1">
The greatest feat one can strive for
is the conversion<wbr> of existing information
into new <i>understanding</i>.
</h2>
<p>I will be posting some of my writings very soon.</p>
</div>
</div>
<!-- <div class="row">
<div class="col-md-offset-1 col-md-2">
</div>
<div class="col-md-7">
<h3><i>I believe that...</i></h3>
<h2>
The greatest feat one can strive for is the creation of
</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 no-gutter">
<h1 class="mk2">understanding</h1>
</div>
</div>
<div class="row">
<div class="col-md-offset-3 col-md-7">
<h2>
where previously there was only information.
</h2>
</div>
</div> -->
</section>
</div>
</body>
</html>