diff options
author | Adam Carpenter <53hornet@gmail.com> | 2019-03-26 15:05:10 -0400 |
---|---|---|
committer | Adam Carpenter <53hornet@gmail.com> | 2019-03-26 15:05:10 -0400 |
commit | 5718a0b54869b341bc74416bf82b716aa15d582c (patch) | |
tree | 0a1ab65ecc854733c15011f364524bde8379ae1b /hello_server/hello.html | |
parent | 29db8e4c4182877e5e723e26e2c5ae11e9383520 (diff) | |
download | learning-rust-5718a0b54869b341bc74416bf82b716aa15d582c.tar.xz learning-rust-5718a0b54869b341bc74416bf82b716aa15d582c.zip |
Finished web server project. Book done!
Diffstat (limited to 'hello_server/hello.html')
-rw-r--r-- | hello_server/hello.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/hello_server/hello.html b/hello_server/hello.html new file mode 100644 index 0000000..869c8f9 --- /dev/null +++ b/hello_server/hello.html @@ -0,0 +1,18 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title> + Hello! + </title> + </head> + <body> + <h1> + Hello! + </h1> + <p> + Hi from Rust + </p> + </body> +</html> + |