Skip to content

Commit

Permalink
arcade 1.7.24 8.45
Browse files Browse the repository at this point in the history
work
  • Loading branch information
parkingTurkeys committed Jul 1, 2024
1 parent 9944255 commit 2dfce72
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 10 deletions.
15 changes: 15 additions & 0 deletions browser/browser.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
BrowseBud
<form id = "browse">
<input id = "searchTerm" type = "text"/>
<button type = "submit">🔎</button>
</form>
</body>
</html>
Empty file added chatapp/chatapp.css
Empty file.
12 changes: 12 additions & 0 deletions chatapp/chatapp.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>Chat App</title>
<link rel="stylesheet" href="chatapp.css">
</head>
<body>
<div id = "logoText">Chatapp!</div>
<script src="chatapp.js"></script>

</body>
</html>
Empty file added chatapp/chatapp.js
Empty file.
18 changes: 9 additions & 9 deletions fileExplorer/fileExplorer.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@

<body>

<button id = "file" id = 1> test </button>
<button id = "file"> test </button>
<button id = "file"> test </button>
<button id = "file"> test </button>
<button id = "file" id = "1"> test </button>
<button id = "file" id = "2"> test </button>
<button id = "file" id = "3"> test </button>
<button id = "file" id = "4"> test </button>
<br>
<button id = "file"> test </button>
<button id = "file"> test </button>
<button id = "file"> test </button>
<button id = "file"> test </button>
<button id = "file" id = "5"> test </button>
<button id = "file" id = "6"> test </button>
<button id = "file" id = "7"> test </button>
<button id = "file" id = "8"> test </button>
<br>
<img src = /assets/kat.png>
<div id = "speech"> Hello World</div>
<div id = "choices"> <button id = "choice1"> Go Home </button> <button id = "choice2"> Add a File </button> <button id = "choice3"> Save </button></div>
<div id = "choices"> <button id = "choice1" onclick = 'window.location.href = "/homepage/homepage.html"'> Go Home </button> <button id = "choice2"> Add a File </button> <button id = "choice3"> Save </button></div>
<script src = "fileScript.js"></script>
</body>

Expand Down
12 changes: 11 additions & 1 deletion fileExplorer/fileScript.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
const fileNames = {
"1":"test",
"2":"test",
"3":"test",
"4":"test",
"5":"test",
"6":"test",
"7":"test",
"8":"test",
};
document.getElementById("speech").innerHTML = "What do you want?";

document.getElementById("speech").innerHTML = "What do you want?";
1 change: 1 addition & 0 deletions homepage/homepage.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
</head>
<body>
<a href = /fileExplorer/fileExplorer.html><button> File Explorer </button></a>
<a href = /chatapp/chatapp.html><button> ChatApp! </button></a>
</body>
</html>

0 comments on commit 2dfce72

Please sign in to comment.