Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Sep 21, 2012
1 parent 67cbb20 commit 0b6ea5d
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
````
<!DOCTYPE html>
<html>
<head>
<title&gt;Page title&lt;/title>
</head>
<body>
<img src='images/company-logo.png' alt='Company' />
<h1 class='hello-world'&gt;Hello, world!&lt;/h1>
</body>
</html>
````

**Correct example:**

````
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
Expand All @@ -55,6 +58,7 @@ This means strictly enforcing these agreed upon guidelines at all times. For add
&lt;h1 class="hello-world"&gt;Hello, world!&lt;/h1&gt;
&lt;/body&gt;
&lt;/html&gt;
````



Expand Down

0 comments on commit 0b6ea5d

Please sign in to comment.