-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting.html
More file actions
53 lines (53 loc) · 2.2 KB
/
testing.html
File metadata and controls
53 lines (53 loc) · 2.2 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>
<title> yo waddup </title>
<link rel="stylesheet" href="CSS/testing.css">
<script src="scripts/testing.js"></script>
</head>
<body>
<div>
<header>
<h1> Hello Hello welcome to my testing and proof of concept page</h1>
</header>
</div>
<div>
<p>
Hey, so as should be obvious to you by now, I'm not too sure what I'm doing.
</p>
<p class="arbitraryStyle">
But please bear with me for <i>a while</i>.
</p>
<p>
<a href="https://leowwb.github.io" class="arbitraryStyle">main page of site</a>
</p>
<p>
<div class="dropdown" id="test_dropdown">
<input value="DropDown ComboBox Test" class="dropdown_button" onClick="dropDown()" type="button">
<div class="dropdown_menu" id="test_dropdown_menu">
<input type="button" class="dropdown_menu_option" onClick="dropDownBtn('hey man how is life')" value="hey">
<input type="button" class="dropdown_menu_option" onClick="dropDownBtn('that is')" value="that's">
<input type="button" class="dropdown_menu_option" onClick="dropDownBtn('my gf also very pretty')" value="pretty">
<input type="button" class="dropdown_menu_option" onClick="dropDownBtn('great thanks')" value="alright">
</div>
</div>
</p>
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="KA7HXGSAJ4V2Q">
<input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
<div>
<p>
<img id="honk_img" src="images/honk_profile.png" alt="best girl">
<textarea id="honk_text" oninput="updateHonkText()">tell us why you love honk, eg. she has a nice voice and is cute af</textarea>
<textarea id="honk_text_bw" readonly></textarea>
<br></br>
<input type="button" value="vehicle overturn!" onClick="vehicleOverturn()">
<input type="button" value="stall for time" onClick="stallForTime()">
</p>
</div>
</body>
</html>