You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+31-2Lines changed: 31 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1077,11 +1077,40 @@ A comment in CSS is similar to HTML in that it has a beginning and end part, but
1077
1077
1078
1078
Just like in the HTML comments, you have a beginning `/*` and an end `*/`. If you open up main.css in the Project folder, you can see the comments I wrote in there! And again, you can have single-line comments, and multi-line ones too.
1079
1079
1080
-
Comments are great for keeping track of what you're doing, especially if a project you're working on spans over a period of time. YOu can make notes for yourself to check later, or you could just tell someone who is reading your code that they are attractive.
1080
+
Comments are great for keeping track of what you're doing, especially if a project you're working on spans over a period of time. You can make notes for yourself to check later, or you could just tell someone who is reading your code that they are attractive.
1081
1081
1082
1082
####Other Developer Joys
1083
1083
1084
-
There's so many things that could go in this section for such a generic title.
1084
+
There's so many things that could go in this section for such a generic title. So, what am I going to tell you? Well, I'm going to tell you what I *haven't* taught you so far.
1085
+
1086
+
#####Forms
1087
+
1088
+
A common thing you'll see on websites are forms, like textboxes, buttons, and checkboxes.
1089
+
I didn't teach you these because you can't do things with them unless you know a bit more than beginner knowledge, which isn't the purpose of this tutorial.
1090
+
1091
+
If you're really dying to see a button, here you go:
1092
+
1093
+
<button type="button">Click Me!</button>
1094
+
1095
+
And there you have it, a button on your website! If you actually want to know how to make the button or form do something, you'll need to know some JavaScript.
1096
+
Until you do, here's more information on buttons: [W3Schools - HTML Forms](http://www.w3schools.com/tags/tag_form.asp)
1097
+
1098
+
#####HTML5 and CSS3
1099
+
1100
+
If you've read anything about the internet and developing for it, you've probably heard some key words thrown around, and a couple of those key words are HTML5 and CSS3.
1101
+
What are those, actually? Well, HTML5 is the latest standard for HTML. The previous HTML version came out in 1999, which is quite a while ago. Unless you're time traveling right now and you printed this out to read as you go.
1102
+
1103
+
Anyway. HTML5 was designed to deliver rich content without the need for additional plugins (for example, Shockwave Flash, Silverlight, etc.), and can handle everything from animation to graphics, music to movies, and can also be used to build complex web applications.
1104
+
Not to mention the fact that it works on every device, from tablets to phones to your standard computer.
1105
+
1106
+
1107
+
1108
+
1109
+
#####How To Meet Ladies/Laddies (Get it? HTML Jokes are the best...)
1110
+
1111
+
#####Links to actually learn this stuff
1112
+
1113
+
##Final Project!
1085
1114
1086
1115
Psh like I'm going to write this before I eat another cookie. Break time.
0 commit comments