- May 26, 2014
- 1,051
First off, I took a little break from MT and learned some coding. Before, I was "as blind as a bat" to coding, but HTML is as easy as pie!
Each opening tag must have a closing tag at the end of the action:
<html> and </html>. Each opening tag has the action with <> around it, and the closing tag is a / before the action with <> around it. The most basic one is "html."
<html>
</html>
Is what you put around your whole program. Then, you might use the "head" and "body" tags to place things in the top or body of the page.
<html>
<head>
</head>
<body>
</body>
</html>
Does not do anything, but you can plug things in-between those statements to create some fun stuff.
The <hr> tag simply puts a line between items,
<html>
<head>
Hi!
</head>
<hr>
<body>
Hello
</body>
</html>
Should turn out as
Hi!
_______________________________________________________________________________________
Hello
Then there are:
<center>- center text
<strong>- bold text
<lo> and <li>- <lo> to start list and <li> to indicate bullet placement
These are the basics!
Although this does nothing but annoy your family at first, eventually you may be able to create professional web pages with this simple programming language.
Chromatinfish
Each opening tag must have a closing tag at the end of the action:
<html> and </html>. Each opening tag has the action with <> around it, and the closing tag is a / before the action with <> around it. The most basic one is "html."
<html>
</html>
Is what you put around your whole program. Then, you might use the "head" and "body" tags to place things in the top or body of the page.
<html>
<head>
</head>
<body>
</body>
</html>
Does not do anything, but you can plug things in-between those statements to create some fun stuff.
The <hr> tag simply puts a line between items,
<html>
<head>
Hi!
</head>
<hr>
<body>
Hello
</body>
</html>
Should turn out as
Hi!
_______________________________________________________________________________________
Hello
Then there are:
<center>- center text
<strong>- bold text
<lo> and <li>- <lo> to start list and <li> to indicate bullet placement
These are the basics!
Although this does nothing but annoy your family at first, eventually you may be able to create professional web pages with this simple programming language.
Chromatinfish