Skip to content

Instantly share code, notes, and snippets.

@l34marr
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save l34marr/704cfc0c2adbc6027796 to your computer and use it in GitHub Desktop.
Save l34marr/704cfc0c2adbc6027796 to your computer and use it in GitHub Desktop.
HTML and CSS Tutorial
<html>
<head>
<title>Simplest HTML Page</title>
</head>
<body>
<h1 style="color: Red">My First HTML Page</h1>
<p>English Paragraph Goes Here. So You Can Learn That:
<ol>
<li style="color: Red">h1 Means Heading One</li>
<li>p Means Paragraph</li>
<li>li Means List, ol Means Order List</li>
</ol>
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment