-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.html
64 lines (64 loc) · 3.19 KB
/
library.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1, maximum-scale=1">
<title>Jason Lin</title>
<link href="style.css" rel="stylesheet" type="text/css">
<link href="fontawesome-free-5.15.1-web\fontawesome-free-5.15.1-web\css\fontawesome.css" rel="stylesheet">
<link href="fontawesome-free-5.15.1-web\fontawesome-free-5.15.1-web\css\brands.css" rel="stylesheet">
<link href="fontawesome-free-5.15.1-web\fontawesome-free-5.15.1-web\css\solid.css" rel="stylesheet">
<link href="favicon0.png" rel="icon">
</head>
<body>
<header>
<nav>
<h1 id="branding">
<a href="index.html">Jason Lin</a>
</h1>
<ul class="navbar">
<li id="navitems"><a href="index.html#aboutmearrow">ABOUT</a></li>
<li id="navitems"><a href="index.html#otherlinks">WORK</a></li>
<li id="navitems"><a href="#contact">CONTACT</a></li>
</ul>
<button class="theme-toggle"><i id="sunmoon" class="fas fa-moon"></i></button>
</nav>
</header>
<div id="front" class="block">
<div id="library">
<h1>My Personal Bookshelf</h1>
<h2 class="librarysection">Books, in no particular order:</h2>
<ul id="booklist" class="librarylist">
<li>What Every Body is Saying — Joe Navarro with Marvin Karlins</li>
<li>Drive: The Surprising Truth About What Motivates Us — Daniel H. Pink</li>
<li>When Breath Becomes Air — Paul Kalanithi</li>
<li>Talking to Strangers — Malcolm Gladwell</li>
<li>Unbroken: A World War II Story of Survival, Resilience, and Redemption — Laura Hillenbrand</li>
<li>The Last Lecture — Randy Pausch with Jeffrey Zaslow</li>
</ul>
<h2 class="librarysection">My favorite TED Talks:</h2>
<ul id="tedlist" class="librarylist">
<li>Great Leaders Do What Drug Addicts Do — Michael Brody-Waite</li>
<li>Learning from dirty jobs — Mike Rowe</li>
<li>The paradox of choice — Barry Schwartz</li>
<li>More than funny — Michael Jr.</li>
<li>Change Your Mindset and Achieve Anything — Colin O'Brady</li>
<li>How to Achieve Your Most Ambitious Goals — Stephen Duneier</li>
<li>The Skill of Humor — Andrew Tarvin</li>
</ul>
<h1><a href="index.html"><i class="fas fa-arrow-circle-left"></i></a></h1>
</div>
</div>
<footer>
<h1>Connect with me!</h1>
<ul id="contact" class="footbar">
<li><a href="mailto:shuhang@umich.edu" target="_blank"><i class="fas fa-envelope"></i></a></li>
<li><a href="https://linkedin.com/in/jasonlin90125" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/jasonlin90125" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="https://chess.com/member/jasonlin90125" target="_blank"><i class="fas fa-chess-rook"></i></a></li>
</ul>
<h3>Copyright @ JJ Lincorporated</h3>
</footer>
<script src="script.js"></script>
</body>
</html>