-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (74 loc) · 1.85 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
<html>
<head>
<title>David's Site</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap-grid.min.css"
rel="stylesheet"
>
<style>
body {
font-family: "Space Grotesk", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
background-color: #cba27a;
}
a {
color: #234F1E;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-6">
<h1>D's Site</h1>
<h3>Links</h3>
<ul>
<li>
<a href="https://github.com/dcharles525">Github</a>
</li>
</ul>
<h3>Library</h3>
<h4>A collection of books I have read, and would highly recommend!</h4>
<div class="container-fluid">
<div class="row">
<div class="col-md-4">
<ul>
<li>Children of Time Series</li>
<li>Bobiverse Series</li>
<li>Sea of Tranquility</li>
<li>Three Body Problem Series</li>
<li>Sekret Machines Series</li>
</ul>
</div>
<div class="col-md-4">
<ul>
<li>Bushido, the Soul of Japan</li>
<li>Man's Search for Meaning</li>
<li>No Longer Human</li>
<li>The Woman in the Dunes</li>
<li>Sun and Steel</li>
</ul>
</div>
<div class="col-md-4">
<ul>
<li>The Eerie Silence</li>
<li>Our Mathematical Universe</li>
<li>The Pragmatic Programmer</li>
<li>CLEAN CODE</li>
<li>2001: A Space Odyssey (Series)</li>
</ul>
</div>
</div>
</div>
<h3>Blog</h3>
I need to write a post soon (TM).
</div>
<div class="col-md-3"></div>
</div>
</div>
</body>
</html>