-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjournal.html
More file actions
62 lines (60 loc) · 2.21 KB
/
journal.html
File metadata and controls
62 lines (60 loc) · 2.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Journal</title>
<link href='http://fonts.googleapis.com/css?family=Cherry+Swash' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css" type="text/css">
</head>
<body>
<header>
<img src="img/lightning-bolt.png" id="bolt" class="middle"/>
<!-- social -->
<div class="middle" >
<a href="https://twitter.com/MikeAdeleke">
<div id="twitter"></div>
</a>
<a href="http://www.linkedin.com/pub/mike-adeleke/1b/966/700"><div id="linkedin"></div></a>
<a href="https://plus.google.com/u/0/114487179377319540610/posts"><div id="googleplus"></div></a>
</div>
<!-- Navigation -->
<nav>
<ul class="nav">
<li><a href="index.html" id="start">Home</a></li>
<li><a href="about.html" id="about">About</a></li>
<li><a href="value.html" id="value">Value</a></li>
<li><a href="journal.html" id="journal">Journal</a></li>
<li><a href="experiments.html" id="additional">Experiments</a></li>
</ul>
</nav>
<!-- End Navigation -->
</header>
<h1>Posts</h1>
<section>
<article>
<header>
<h3>First Post</h3>
<h3>Date</h3>
</header>
<p>So far TSL has been amazing. I have learned so much. I have an awesome mentor too!</p>
</article>
<br>
<article>
<header>
<h3>First Post</h3>
<h3>Date</h3>
</header>
<iframe class="video" width="560" height="315" src="http://www.youtube.com/embed/Bk14UW1d3zs" frameborder="0" allowfullscreen></iframe>
<p>Life at TSl has been a whirlwind. I have been meeting so many new people and been achieving my goals faster than I ever could imagine.</p>
<br>
<p>I remember the day when my uncle offered to pay for half of TSL and I told him that I did not want to put the financial burden on him. I cannot imagine my life if he had listened to such a foolsih request.</p>
<br>
<p>On the flip side, I have never been more tired and cynical than right now. Now I understand why programmers are not the most social of creatures and tend to lack that little bit of charisma. It dies fast.</p>
<br>
</article>
</section>
<footer>
<p>© 2013 Mike Adeleke</p>
</footer>
</body>
</html>