diff options
-rw-r--r-- | app.css | 7 | ||||
-rw-r--r-- | app.js | 3 | ||||
-rw-r--r-- | index.html | 15 |
3 files changed, 25 insertions, 0 deletions
@@ -0,0 +1,7 @@ +h1 { + color : magenta; +} + +body { + background-color: black; +}
\ No newline at end of file @@ -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 |