diff --git a/odin-templating/README.md b/odin-templating/README.md index d0b881f..7acf293 100644 --- a/odin-templating/README.md +++ b/odin-templating/README.md @@ -38,24 +38,24 @@ } ``` - - - HTML Title - - -
-
-

Hello, world!

-
Goodbye, world!
-
Yo, what's up!
-
- don't be eeeviiiilll - This link has a class called 'button' -
-
- green texture -
+<html> + <head> + <title>HTML Title</title> + </head> + <body> + <div class="container"> + <div class="article"> + <h1>Hello, world!</h1> + <h6>Goodbye, world!</h6> + <div aria-data="idk!">Yo, what's up!</div> + <div> + <a href="http://google.com">don't be eeeviiiilll</a> + <a class="button" href="">This link has a class called 'button'</a> + </div> + </div> + <img class="img" alt="green texture" src="background.png"> + <div class="hello" id="lol"></div> Random text -
- - \ No newline at end of file + </div> + </body> +</html> \ No newline at end of file