Site Navigation
- Home
- Bible Stuff
- Fun Stuff
- More Serious Stuff
- How To...
- School
- Schoolish Stuff
The Source Of All My Work and Learnings
First, HTML and CSS are computer languages that you can use to make a website.
You will need some kind of webpage maker to make the webpage. There are a variety of different programs that will fulfill the task of presenting your webpage in a browser. One of the most common is Notepad which can be found on almost every computer. Another one is TextEdit, available on Mac OS X's as one of the "automatically just on there" programs.
Secondly, at the top of the page, you always have to have this little blurb to make the website correct with the html code (You can just copy and paste it into your website creater because it's a pain to type it all out, believe me):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title> How To Make Your Own Webpage</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> </head> <body>
Here is a table showing all the different entities that you can use in XHTML:
| Tags | Description | Purpose | Example | Result |
|---|---|---|---|---|
| <p> </p> | Paragraph Tag(opening and closing) | To show the beginning and end of a paragraph | <p>This is a paragraph</p> | This is a paragraph |
| <br /> | Break Tag | To put a line inbetween a paragraph, image, or anything else on your website. | This <br /> is<br /> how<br /> a<br />break<br />tag<br />works. | This is how a break tag works. |
| <div> </div> | Div Tag | Group words or pictures into a group which you can move to different places later on using CSS |
You can make many different colors using hexadecimal numbers(base 16). The order of the numbers in hexadecimal numbers go:0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f. With the color numbers, there are 6 numbers, each representing a color. The first two represent the red in a color, the 3rd and 4th number represent how much green there is, and the last two represent the blue.
12 34 56
My favorite color combinations
| Number | Color |
|---|---|
| #0000ff | Blue |
| #00ff00 | Green |
| #00ffff | Teal |
| #ff0000 | Red |
| #ff00ff | Pink |
| #ffff00 | Yellow |
| #aa2553 | Burgondy |
| #abcdef | Baby Blue |
| #fedcba | Dunno Jicima |
| #a0f2d3 | Pale Green |
| #00ff99 | Light Green |
| #ccffff | Pale Light Blue |
| #dfff00 | Traditional Chartreuse |
| #654321 | Dark Brown |
| #a5d97e | Jungle Green |
| #98765f | Lightish Brown |
Example of using css