-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgarbage.html
89 lines (73 loc) · 2.36 KB
/
garbage.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
<DOCTYPE html>
HELLO PEOPLE THIS IS ALI AND SURY DOING WEIRD THINGS...BLARGL
<html>
<head>
<title>SODAASN</title>
<link rel="stylesheet" href="css/styles.css" type="text/css">
<link rel="stylesheet" href="jquery-ui-1.8.17.custom/css/ui-lightness/jquery-ui-1.8.17.custom.css"></script>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js'></script>
<script type='text/javascript' src='jquery-ui-1.8.17.custom/js/jquery-1.7.1.min.js'></script>
<script type='text/javascript' src='jquery-ui-1.8.17.custom/js/jquery-ui-1.8.17.custom.min.js'></script>
<script>
$(function() {
$( "input:submit, a, button", ".demo" ).button();
$( "a", ".demo" ).click(function() { return false; });
});
</script>
</head>
<body>
<div class="demo">
<button>A button element</button>
<input type="submit" value="test button">
<a href="#">An anchor</a>
</div>
blargl
<form name="newEvent">
<input type="hidden" value="WILLHOLDGROUPIDNUMBER">
Ze Name: <input name="name" type="text">
<br>
Date (not the fruit): <input name="date" type="text">
<br>
Where The Party's At: <input name="location" type="text">
<br>
A Que Hora? <input name="time" type="text">
<br>
Blurb! <input name="blurb" type="text">
<br>
Any tags? Well too bad, because you can't tag right now.
<br>
<button onclick="addEvent.js">ADD!</button>
</form>
<form name="qform" onsubmit="searchEvents()" method="POST">
<table>
<tr>
<td>I want a calendar that has:</td>
<td><input name="squery" type="text"/></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="SEARCH"/>
</td>
</tr>
</table>
</form>
<div id="header">
<table id="header">
<th>
Happy New Year!
<br><br>
Apologies for the construction mess.
</th>
</table>
</div>
<img src="images/anotherdeck.gif" alt="Wow, things are really not working out today">
<div id="eventlist">
This is where all events shall be listed..until further notice.
</div>
<div id="lowerleft">
hello?
</div>
<div id="calendar">
</div>
</body>
</html>