-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhow.html
More file actions
45 lines (38 loc) · 1.08 KB
/
how.html
File metadata and controls
45 lines (38 loc) · 1.08 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
<?php
$page = 'Not yet';
require_once('header.php');
?>
<div id='main'>
<div class='wrapper'>
<div id='left'>
<h1>How does Thimbl work?</h1>
<p>
Like this...
</p>
<img src="https://docs.google.com/drawings/pub?id=162hS8gVeDMeinzsHyJaFU3LJ_jqlqOEFwLiduFY87vQ&w=640&h=480">
<div id="tellmemore">
<h2>
Tell me more
</h2>
<a class="floatleft" href="presentation.html"><img src="presentation_small.png" alt="Presentation"></a>
<a class="floatright" href="faq.html"><img src="faq.png" alt="faq this way" ></a>
</div>
</div>
<div id='right' class="notgrey">
<p class="pinkBox">
"The Internet has always been about sharing: Usenet, email and IRC enabled social connections way before the social media hype."
</p>
<br />
<div id="rightpresentation">
<h2>
What is Thimbl?
</h2>
<a href="presentation.html"><img src="presentation_small.png" alt="Presentation"></a>
</div>
</div>
<div style="clear: both;"></div>
</div>
</div>
<?php require_once('footer.php'); ?>
</body>
</html>