-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocessing.php
More file actions
35 lines (35 loc) · 1.14 KB
/
Copy pathprocessing.php
File metadata and controls
35 lines (35 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Processing</title>
<link rel="stylesheet" href="maps-master.css">
</head>
<body>
<header>
<a href="index.html"><h1>touch the maps in your brain</h1></a>
</header>
<div class="wrapper">
<nav>
<a href="poetry.html"><h2>the poetry</h2></a>
<a href="experiment.html"><h2>the experiment</h2></a>
<a href="exhibition.html"><h2>exhibition</h2></a>
<a href="maillist.html"><h2>stay updated</h2></a>
<a href="sources.html"><h2>source list</h2></a>
</nav>
</div>
<main>
<h1 class="forerow">we will keep you updated. thank you!</h1>
<div class="forerow">
family name: <?php print $_POST['family-name']?>
<br>
email: <?php print $_POST['email']?>
<br>
suggested news: <?php print $_POST['feedback']?>
<br>
</main>
<footer>©Nat Stewart</footer>
</body>
</html>