From 0b6ea5d85d1b992d24323d96393eb35490f03243 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 20 Sep 2012 18:29:04 -0700 Subject: [PATCH] readme --- README.md | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4c36a6b3..9850f9f0 100644 --- a/README.md +++ b/README.md @@ -32,19 +32,22 @@ This means strictly enforcing these agreed upon guidelines at all times. For add **Incorrect example:** - <!DOCTYPE html> - <html> - <head> - <title>Page title</title> - </head> - <body> - <img src='images/company-logo.png' alt='Company' /> - <h1 class='hello-world'>Hello, world!</h1> - </body> - </html> +```` + + + + + + +Company +

+ + +```` **Correct example:** +```` <!DOCTYPE html> <html> <head> @@ -55,6 +58,7 @@ This means strictly enforcing these agreed upon guidelines at all times. For add <h1 class="hello-world">Hello, world!</h1> </body> </html> +````