-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathcontact.html
More file actions
53 lines (37 loc) · 1.34 KB
/
contact.html
File metadata and controls
53 lines (37 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
<title>Dynamic Page | Contact</title>
<link rel='stylesheet' type='text/css' href='css/style.css' />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'></script>
<script type='text/javascript' src='js/modernizr.js'></script>
<script type='text/javascript' src='js/dynamicpage.js'></script>
</head>
<body>
<?php include('../header.php'); ?>
<div id="page-wrap">
<header>
<h1>Dynamic Page</h1>
<nav>
<ul class="group">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section id="main-content">
<div id="guts">
<iframe height="517" allowTransparency="true" frameborder="0" scrolling="no" style="width:100%;border:none" src="https://chriscoyier.wufoo.com/embed/s7p1p9/"><a href="https://chriscoyier.wufoo.com/forms/s7p1p9/" title="Example Form" rel="nofollow">Fill out my Wufoo form!</a></iframe>
</div>
</section>
</div>
<footer>
©2010 CSS-Tricks
</footer>
</body>
</html>