0 Users appreciate this thread.
Tutorial on programming!
AprilTheDenazi (2016-12-10 14:57:15)Now, the body codes are easy too. A paragraph, <p> </p>, is for text. If you want to make the text go to the next line, you use a line break: </br>. A line break is a single object so it does not include an end tag.
A line break
Brings text
To the next line.
Some text is preferred bold or italic, so they use these: <b> or <strong>, <i>, and <u>. This makes the text change.
This is April, coder. Enjoy your coding!
April E. Denazi
ICTman (2017-04-14 20:51:19)^ ...until you meet CSS and JS.
http://xkcd.com/1834
Tweet meh: @ICTman1076
Discord meh: ICTman#5904
Tweet meh again: @wingedmusic
Tweet meh: @ICTman1076
Discord meh: ICTman#5904
Tweet meh again: @wingedmusic
Log in to submit a comment
Back to forum: Web Programming (HTML, JS, CSS, PHP, MySQL)
New registered users today: 7
Newest registered user: ElegantVulpes
Newbies? Not a problem! HTML is easy to learn! The basics are: A basic code starts with a DOCTYPE. usually we don't include it because we have already preset it in the code editor/creator. At the end of a 2-tag code, a / is used in the tag at the end: *</b>*A code begins with the HTML code. Without it, we couldn't run ANY HTML tags. It will look like this: <html>. Next, is the head tag. This is the part to include the title or major information at the top. <head>. At the head, a code is mainly used. <h1-h6> is to make the text sized depending on the importance. <h1> would be the most important, and <h6> is the least important. After you include that, it should look like this.
<html>
<head>
<h1>I am huge</h1>
<h6>I am tinsey winsey</h6>
</head>
</html>
So another part, the body, goes in the very middle. It includes ALL THE OTHER CODE NEEDED IN THE PAGE! It goes after the head and then the body looks like: <body> and </body>. The body should go after the end tag for the head or it will not function properly. This is April, HTML coder.