![]() |
|
Tutorial The Basic HTML Base! - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Design (https://sinister.ly/Forum-Design) +--- Forum: Web Design (https://sinister.ly/Forum-Web-Design) +--- Thread: Tutorial The Basic HTML Base! (/Thread-Tutorial-The-Basic-HTML-Base) |
The Basic HTML Base! - Mustnabs - 11-30-2012 I decided to create this thread because many people don't know how to create a very basic HTML site. In order to create the basic HTML site you need to know the main HTML base. Here it is: Code: <HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>Anything in the page should go in the body. -If you need any help with HTML be sure to ask me because i'm a pro xD RE: The Basic HTML Base! - Adorapuff - 12-01-2012 I might hit you up about the HTML help, I recently got into it, and I don't know too much But i'm learning .
RE: The Basic HTML Base! - Mustnabs - 12-01-2012 (12-01-2012, 04:04 PM)Devil Child Wrote: I might hit you up about the HTML help, I recently got into it, and I don't know too much But i'm learning Please don't hesitate! I learned it a while ago and tested my skills out the other day and I was impressed. I remember so much still
RE: The Basic HTML Base! - Bannedshee - 12-01-2012 Im pretty good in HTML this will surely help the newbies XP RE: The Basic HTML Base! - YP. - 12-05-2012 I wanna learn it all! Thanks for the share dude!! RE: The Basic HTML Base! - Mustnabs - 12-05-2012 (12-05-2012, 01:05 AM)YP. Wrote: I wanna learn it all! No problem! If you need any help learning it just private message me
RE: The Basic HTML Base! - Mediocrity - 05-29-2013 Wow when i saw the thread title "Basic html base" you were right this is the very basic, i do think you could have elaborated a little more on the thread and told users how to customize the code a bit more you could have possible added a few more tags to the code aswell for instence Code: <html>
<HEAD>
<TITLE>Basic HTML page</TITLE>
</HEAD>
<BODY BGCOLOR="chose a colour">
<H1>A Simple Sample Web Page</H1>
<IMG SRC="http://sheldonbrown.com/images/scb_eagle_contact.jpeg">
<H4>By Mediocirty/H4>
<H2>Demonstrating a few HTML features</H2>
</CENTER>
HTML is really a very simple language. It consists of ordinary text, with commands that are enclosed by "<" and ">" characters, or bewteen an "&" and a ";". <P>
You don't really need to know much HTML to create a page, because you can copy bits of HTML from other pages that do what you want, then change the text!<P>
This page shows on the left as it appears in your browser, and the corresponding HTML code appears on the right. The HTML commands are linked to explanations of what they do.
<H3>Line Breaks</H3>
HTML doesn't normally use line breaks for ordinary text. A white space of any size is treated as a single space. This is because the author of the page has no way of knowing the size of the reader's screen, or what size type they will have their browser set for.<P>
If you want to put a line break at a particular place, you can use the "<BR>" command, or, for a paragraph break, the "<P>" command, which will insert a blank line. The heading command ("<4></4>") puts a blank line above and below the heading text.
<H4>Starting and Stopping Commands</H4>
Most HTML commands come in pairs: for example, "<H4>" marks the beginning of a size 4 heading, and "</H4>" marks the end of it. The closing command is always the same as the opening command, except for the addition of the "/".<P>
Modifiers are sometimes included along with the basic command, inside the opening command's < >. The modifier does not need to be repeated in the closing command.
<H1>This is a size "1" heading</H1>
<H2>This is a size "2" heading</H2>
<H3>This is a size "3" heading</H3>
<H4>This is a size "4" heading</H4>
<H5>This is a size "5" heading</H5>
<H6>This is a size "6" heading</H6>
<center>
<H4>Copyright © 2013, by
<A HREF="http://YourWebsite.com/index.html">your name</A>
</H4></center>
</body>
</html>RE: The Basic HTML Base! - i0xIllusi0n - 05-29-2013 (05-29-2013, 03:15 AM)Mediocrity Wrote: Wow when i saw the thread title "Basic html base" you were right this is the very basic, i do think you could have elaborated a little more on the thread and told users how to customize the code a bit more you could have possible added a few more tags to the code aswell for instence Don't gravedig. It's unnecessary. RE: The Basic HTML Base! - Lain - 05-29-2013 (05-29-2013, 03:15 AM)Mediocrity Wrote: Wow when i saw the thread title "Basic html base" you were right this is the very basic, i do think you could have elaborated a little more on the thread and told users how to customize the code a bit more you could have possible added a few more tags to the code aswell for instence So... much... invalid.... HTML.... (05-29-2013, 04:08 AM)i0xIllusi0n Wrote: Don't gravedig. It's unnecessary. This^ |