From a23d1456947c22a67d70a790ba22368ae30ffd2d Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Mon, 17 Apr 2017 05:50:30 -0300 Subject: [PATCH] Fix broken Markdown headings --- README.md | 92 +++++++++++++++++++++++++++---------------------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/README.md b/README.md index 77d1b74..11b62d3 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,30 @@ HTML+CSS Tutorial ================= -###Who +### Who I'm Cassidy. I'm software engineer & developer evangelist at [Clarifai](http://clarifai.com), and I've been teaching myself HTML, CSS, and other web programming and scripting for over 10 years. And I want to teach you now. Because you're good looking. And because it's useful. -###What +### What In this tutorial, we'll start from the very beginning. You don't need to know anything about HTML and CSS or anything about code to start. I'll include some tutorial files for you to play with and check out. -###When +### When Now. Or whenever. I'm not planning on taking this down anytime soon. But you are only limited by your own schedule. Or set free by it. Whatever. -###Where +### Where On a computer. Here. -###Why +### Why Because this stuff is important. Whether you're a business person formatting your emails, an aspiring web designer wanting to get your feet wet, or just someone who is interested and hasn't tried any sort of coding, scripting, or programming before, **HTML and CSS are an essential part** of your learning curve. -##Table of Contents +## Table of Contents * [HTML](https://github.com/cassidoo/HTML-CSS-Tutorial#html-time-lets-go) * Editors * Tag Structure @@ -65,9 +65,9 @@ Because this stuff is important. Whether you're a business person formatting yo * [Final Project!](https://github.com/cassidoo/HTML-CSS-Tutorial#final-project) * And now, the end is near -##HTML Time. Let's Go. +## HTML Time. Let's Go. -###Editors +### Editors So the first thing you'll need is an editor to edit your jazz. There's tons of options out there. @@ -79,7 +79,7 @@ So the first thing you'll need is an editor to edit your jazz. There's tons of There's a bunch of others [listed here](http://en.wikipedia.org/wiki/List_of_HTML_editors), I just listed the ones I've used and liked! -###HTML Tag Structure +### HTML Tag Structure Here is a barebones HTML page, about as simple as you can get. You can open it up in the **1 - Structure** folder in the file part1.html. If you were to open the file in your favorite browser (which you can do, go ahead), you'll see a plain webpage with the title "My Website" and the words, "Hello, World!" written on the page. @@ -118,7 +118,7 @@ Inside ``, there are two elements: ``and ``. Contained in ``. Everything visible to the user is contained in these tags. Right now, all that consists of is "Hello, World!" Let's change that for fun. Replace "Hello, World!" with your own text in your favorite HTML editor, and then open the page in your browser. Neat! -###Structuring text +### Structuring text Let's get juicy. We're going to talk about some new tags for structuring your text. Because you're not going to want just one style of text throughout your whole website, right? @@ -132,7 +132,7 @@ Next, we have `

` tags. `

` adds a *paragraph* of text to our website, whic And finally, we have `