-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtravels.html
More file actions
executable file
·75 lines (74 loc) · 2.97 KB
/
travels.html
File metadata and controls
executable file
·75 lines (74 loc) · 2.97 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
<!DOCTYPE html>
<html>
<head>
<title>Raphael Cherney | engineering design</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=PT+Sans+Narrow&v1" />
<style>
.panel { display: none; overflow: hidden; }
.panel.open { display: block; }
</style>
<script>
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll(".title").forEach(function(title) {
title.addEventListener("click", function() {
var panel = this.nextElementSibling;
if (panel && panel.classList.contains("panel")) {
panel.classList.toggle("open");
}
});
});
});
</script>
</head>
<body id="home">
<div id="header">
<h1><a href="index.html">RAPHAEL CHERNEY</a></h1>
<h2><a href="index.html">engineering design</a></h2>
</div>
<div id="navigation">
<ul>
<li id="navigation_home"><a href="index.html">Home</a></li>
<li id="navigation_about"><a href="about.html">About Me</a></li>
<li id="navigation_projects"><a href="projects.html">Projects</a></li>
<li id="navigation_professional"><a href="professional.html">Professional</a></li>
<li id="navigation_contact"><a href="contact.html">Contact</a></li>
</ul>
</div>
<div id="content">
<table class="title" style="cursor: pointer; border-bottom: thick solid rgb(255,0,0)">
<tr>
<td>Drawing</td>
</tr>
</table>
<div class="panel">
<table id="image_set">
<tr>
<td>
<img src="images/64165.jpg" height=200 />
<p id="caption"><em>Fallingwater</em>, pencil on paper, 2004</p>
</td>
</tr>
</table>
</div>
<table class="title" style="cursor: pointer; border-bottom: thick solid rgb(0,255,0)">
<tr>
<td>Drawing</td>
</tr>
</table>
<div class="panel">
<table id="image_set">
<tr>
<td>
<img src="images/64165.jpg" height=200 />
<p id="caption"><em>Fallingwater</em>, pencil on paper, 2004</p>
</td>
</tr>
</table>
</div>
</div>
<div id="footer">
© 2011-13 Raphael Cherney
</div>
</body>
</html>