-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrianglebook.html
More file actions
76 lines (59 loc) · 1.95 KB
/
trianglebook.html
File metadata and controls
76 lines (59 loc) · 1.95 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Caroline Rose | Triangle Book</title>
<!--Link to CSS style sheet-->
<link href="styles/screen.css" rel="stylesheet" type="text/css" />
</head>
<!--VISIBILE WEBSITE CONTENT-->
<body>
<div id="wrapper"><!--encloses all visible content-->
<!--Banner at top of page-->
<header>
<h1><a href="index.html">Caroline Rose</a></h1>
<!--Navigation menu-->
<nav>
<ul>
<!--<li><a href="index.html">home</a> | </li>-->
<li><a href="index.html">portfolio</a> | </li>
<li><a href="about.html">about</a> | </li>
<li><a href="resume.html">rèsumè</a></li>
<!--<li><a href="contact.html">contact</a></li>-->
</ul>
</nav>
</header>
<div id="content"><!--content between header and footer-->
<table>
<tr>
<td class="width40"><a href="colorado-delta.html"><p>prev</p></a></td>
<td class="width820"><h2 class="center_me">Triangle Book</h2></td>
<td class="width40"><a href="repair.html"><p>next</p></a></td>
</tr>
</table>
<p class="description">An accordian-style book in a triangular shape. The 'pages' consist of three segments of paper, sewn together. </p>
<table>
<tr><!--begin photos table-->
<td>
<img class="margins-top30-right40" src="images/tbook1.gif" height="323" width="430" alt="book1">
</td>
<td>
<img class="margins-top30-right40" src="images/tbook2.gif" height="323" width="430" alt="book2">
</td>
</tr>
<tr>
<td>
<img class="margins-top30-right40" src="images/tbook3.gif" height="323" width="430" alt="book3">
</td>
<td>
<img class="margins-top30-right40" src="images/tbook4.gif" height="323" width="430" alt="book4">
</td>
</tr>
</table>
</div><!--Closes content div-->
<footer>
<p>© Caroline Rose 2013</p>
</footer>
</div><!--Closes wrapper div-->
</body>
</html>