summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTinWoodman92 <chrhodgden@gmail.com>2023-11-27 15:06:38 -0600
committerTinWoodman92 <chrhodgden@gmail.com>2023-11-27 15:06:38 -0600
commited1ad8ef862b5ec30263d995c8eb12e994490e52 (patch)
treeab6ba3ec968ec480c8569ffb02ede035c4541ded
Initial Commit
-rw-r--r--app.css7
-rw-r--r--app.js3
-rw-r--r--index.html15
3 files changed, 25 insertions, 0 deletions
diff --git a/app.css b/app.css
new file mode 100644
index 0000000..02aadcf
--- /dev/null
+++ b/app.css
@@ -0,0 +1,7 @@
+h1 {
+ color : magenta;
+}
+
+body {
+ background-color: black;
+} \ No newline at end of file
diff --git a/app.js b/app.js
new file mode 100644
index 0000000..01ae5b2
--- /dev/null
+++ b/app.js
@@ -0,0 +1,3 @@
+function alertButton() {
+ alert("Hello world!")
+} \ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..9cfa8fe
--- /dev/null
+++ b/index.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+<link rel="stylesheet" href="app.css"/>
+<body>
+</head>
+
+<h1>Nick Chopper</h1>
+
+<button onClick="alertButton()">Click Me</button>
+
+</body>
+<script src="app.js"></script>
+</html> \ No newline at end of file