Last active
August 29, 2015 14:11
-
-
Save l34marr/704cfc0c2adbc6027796 to your computer and use it in GitHub Desktop.
HTML and CSS Tutorial
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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