diff options
author | Oxore <oxore@protonmail.com> | 2019-09-29 03:21:28 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2019-09-29 03:22:19 +0300 |
commit | b550472475d41d9519bb3a1e231a72be7f95dafb (patch) | |
tree | b26c4cb9c76d6ab9df4481a7a6a72b785a1d3350 | |
parent | 9ac85b108ad596b697276471a97947dbbdb339fa (diff) |
Add DOCTYPE, html, head, style and body tags to index.html
-rw-r--r-- | index.html | 25 |
1 files changed, 18 insertions, 7 deletions
@@ -1,7 +1,18 @@ -<h1>Welcome to AAA</h1> -<p> - <a href="http://git.oxore.tk">cgit</a> -</p> -<p> - <a href=oreily-memes.html>O'Reily memes</a> -</p> +<!DOCTYPE html> +<html> + <head> + <title>AAA</title> + <style> + </style> + </head> + + <body> + <h1>Welcome to AAA</h1> + <p> + <a href="http://git.oxore.tk">cgit</a> + </p> + <p> + <a href=oreily-memes.html>O'Reily memes</a> + </p> + </body> +</html> |