-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.16 KB
/
index.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<!-- Meta for the meta -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Pixel Tracker</title>
<!-- Gimme yo styles -->
<link rel="stylesheet" href="index.css" type="text/css" charset="utf-8"/>
<!-- Script time!1!1 -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div id="container">
<div id="head">
<h1>Pixel Tracker</h1>
<h2>Track your pixel</h2>
<div class="split"> </div>
</div>
<div id="content">
<div>
<noscript>Warning: you need Javascript!<br /><br /></noscript>
<form id="email_form">
Enter your email: <input type="text" id="email_value" value="" />
<button id="email_submit">Get Pixel</button>
</form>
</div>
</div>
<div id="foot">
<div class="split"> </div>
© Copyright 2011 ‐ Alex & Ryan
</div>
</div>
</body>
</html>