diff options
| author | yuzu-eva <stevenhu@web.de> | 2023-03-20 13:58:01 +0100 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2023-03-20 13:58:01 +0100 |
| commit | bc7eb37e99fb1449baef62a981e3c6e9fe50208c (patch) | |
| tree | 9cf0fddddb33cc22086fff2e7a741c1059cd31b6 | |
initial commit
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | index.html | 18 | ||||
| -rw-r--r-- | styles/style.css | 8 |
3 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..b6482fa --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# The Odin Project + +This is my repository for The Odin Project online course. diff --git a/index.html b/index.html new file mode 100644 index 0000000..3214cf5 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html lang="en-US"> + +<head> + <title>yuzu-eva's odin project</title> + <meta charset="UTF-8"> + <meta name="viewport" content="width=devide-width,initial-scale=1"> + <link rel="stylesheet" href="styles/style.css"> +</head> + +<body> + <div> + <h1>Hello, World!</h1> + </div> +</body> +<script src=""></script> + +</html> diff --git a/styles/style.css b/styles/style.css new file mode 100644 index 0000000..4ea6483 --- /dev/null +++ b/styles/style.css @@ -0,0 +1,8 @@ +html { + background: black; + font-family: 'Open Sans', sans-serif; +} + +body { + color: white; +} |
