-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperiments.html
More file actions
138 lines (136 loc) · 3.32 KB
/
experiments.html
File metadata and controls
138 lines (136 loc) · 3.32 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!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="experiments">Experiments</a></li>
</ul>
</nav>
<!-- End Navigation -->
</header>
<section id="exp-dribbble" class="experiment">
<header>
<h1>Dribbble Typography</h1>
</header>
<div>
<h3>Go the Extra</h3>
<h1>Mile</h1>
<h3>It's Never</h3>
<h2 class="effect">Crowded</h2>
</div>
</section>
<section id="exp-alerts" class="experiment">
<header>
<h1>Alert Messages</h1>
</header>
<article>
<div class="message info">
<div class="content">
<h4>How lucky!</h4>
<h5>Ah, my darling, how beautiful you are. How devastating! How lucky!</h5>
</div>
</div>
<div class="message success">
<div class="content">
<h4>Brilliance!</h4>
<h5>Brilliance. That's all I can say. Sheer, unadulterated brilliance!</h5>
</div>
</div>
<div class="message warning">
<div class="content">
<h4>Whoops!</h4>
<h5>Ah, my darling, how beautiful you are. How devastating! How lucky!</h5>
</div>
</div>
<div class="message error">
<div class="content">
<h4>I'm terribly sorry.</h4>
<h5>Once musn't be rude, even to one's breakfast.</h5>
</div>
</div>
<article>
</section>
<section id="exp-calendar">
<header>
<h1>Calendar</h1>
</header>
<article>
<div class="calendar_background">
<div class="calendar_experiment">
<h2>August</h2>
<ol class="calendar_row_0">
<li>S</li>
<li>M</li>
<li>T</li>
<li>W</li>
<li>T</li>
<li>F</li>
<li>S</li>
</ol>
<ol>
<li>28</li>
<li>29</li>
<li>30</li>
<li>31</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>10</li>
<li>11</li>
<li>12</li>
<li>13</li>
<li>14</li>
<li>15</li>
<li>16</li>
<li>17</li>
<li>18</li>
<li>19</li>
<li>20</li>
<li>21</li>
<li>22</li>
<li>23</li>
<li>24</li>
<li>25</li>
<li>26</li>
<li>27</li>
<li>28</li>
<li>29</li>
<li>30</li>
<li>31</li>
</ol>
</div>
</div>
</article>
</section>
<footer>
<p>© 2013 Mike Adeleke</p>
</footer>
</body>
</html>