Ray's Coding
Welcome to Ray's free coding forum! Here we help people learn to code, and share knowledge of coding.

Please feel free to sign up and begin your learning,teaching or sharing adventure!
Ray's Coding
Welcome to Ray's free coding forum! Here we help people learn to code, and share knowledge of coding.

Please feel free to sign up and begin your learning,teaching or sharing adventure!
Ray's Coding
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Ray's Coding

Ray's coding forum for teaching, sharing, and learning.
 
HomeHome  Latest imagesLatest images  SearchSearch  RegisterRegister  Log in  

 

 [TuT]How to make a basic HTML documents skeleton

Go down 
AuthorMessage
Ray
God Ray
God Ray
Ray


Posts : 36
Code Tokens : 40343
Join date : 2013-05-02
Age : 25
Location : North America

[TuT]How to make a basic HTML documents skeleton Empty
PostSubject: [TuT]How to make a basic HTML documents skeleton   [TuT]How to make a basic HTML documents skeleton EmptyFri May 10, 2013 4:09 am

Basic HTML skeleton


What's up guys? Today I'll be showing you the basic HTML skeleton! This is the code you're going to most of the time always start out with as a beginner in HTML. Once you advance you will begin to add more tags for various reasons such as the <!DOCTYPE> and what not.

But today, I'm not including the <!DOCTYPE> or anything else. Just a simple basic HTML skeleton. Let's begin.


Step 1: Start the HTML,Head,Title.

Code:

<html>
  <head>
<title>

Step 2: Write a title and end the title tag along with the head tag.

Code:

<html>
  <head>
<title>**TITLE OF THE PAGE**</title>
</head>


Step 3: Begin the body tag and end the body tag and html tag.

Code:


<html>
  <head>

<title>**TITLE OF THE PAGE**</title>

    </head>
<body>



  </body>
</html>


So that's you basic HTML skeleton. You will be adding all your major coding inside of the 2 body tags. I'll post a tutorial on a more advanced HTML skeleton later on! I hope this helped you guys.



Post below if you need additional explanation or help understanding this.
Back to top Go down
https://rayscoding.forumotion.com
 
[TuT]How to make a basic HTML documents skeleton
Back to top 
Page 1 of 1
 Similar topics
-
» [TuT]Basic Html5 Skeleton [TuT]
» [TuT] How to make a basic AutoTyper
» What is HTML?
» [Beginner TuT] How to make borders using CSS

Permissions in this forum:You cannot reply to topics in this forum
Ray's Coding :: Coding :: HTML-
Jump to: