LMaW/Basics
From Create Your Own Story
(Difference between revisions)
(Create page (Still need to add more)) |
(Add more options.) |
||
(One intermediate revision not shown) | |||
Line 4: | Line 4: | ||
DOCTYPE - This tells the web browser how to read the webpage. While computers are good at somethings, you still need to tell it what to do. | DOCTYPE - This tells the web browser how to read the webpage. While computers are good at somethings, you still need to tell it what to do. | ||
+ | |||
+ | HTML - This just states that the document will be HTML. I don't know PHP, so I won't cover that. | ||
Head - This is the top of the document. We give it more instructions, like what the page may look like (style), what title to put in, what scripts to run (javascript), and other details. | Head - This is the top of the document. We give it more instructions, like what the page may look like (style), what title to put in, what scripts to run (javascript), and other details. | ||
+ | |||
+ | Body - This is where all the stuff that you will see on the webpage goes. | ||
+ | |||
+ | *[[LMaW/Even More Basic|This is still a bit too complicated, start with the pure basics.]] | ||
+ | *[[LMaW/DOCTYPE|Tell me more about DOCTYPE.]] | ||
+ | *[[LMaW/HTML|Tell me more about HTML.]] | ||
+ | *[[LMaW/Head|Tell me more about the head.]] | ||
+ | *[[LMaW/Body|Tell me more about the body.]] | ||
+ | *[[LMaW/Text formatting|Never mind all that, just tell me how to do all the text stuff.]] | ||
+ | *[[LMaW/Tables|Lets make a table]] | ||
+ | *[[LMaW/Boxes|Lets make some boxes]] | ||
+ | *[[LMaW/Images|Hey, I just want to put photos on here!]] | ||
+ | |||
[[Category:Lets make a webpage]] | [[Category:Lets make a webpage]] |
Current revision as of 02:03, 15 March 2016
An HTML page has some basic elements.
When we create one, we start with the sections.
DOCTYPE - This tells the web browser how to read the webpage. While computers are good at somethings, you still need to tell it what to do.
HTML - This just states that the document will be HTML. I don't know PHP, so I won't cover that.
Head - This is the top of the document. We give it more instructions, like what the page may look like (style), what title to put in, what scripts to run (javascript), and other details.
Body - This is where all the stuff that you will see on the webpage goes.
- This is still a bit too complicated, start with the pure basics.
- Tell me more about DOCTYPE.
- Tell me more about HTML.
- Tell me more about the head.
- Tell me more about the body.
- Never mind all that, just tell me how to do all the text stuff.
- Lets make a table
- Lets make some boxes
- Hey, I just want to put photos on here!