Build a Web Page
This tip will tell you exactly how to code your own HTML website.
First, remember that most tags must be eventually closed. The syntax would be: <tag> CONTENT </tag>.
Open a text editor such as notepad, or the HTML editor for your hosting service.
The first tag in your website should be <html>, which starts the HTML site.
Immediately after this should come the <head> tag.
So far, you should have the following:
The next step is to enter the title of your website. This is what shows up in the title bar of the internet browser. Put the title between the <title> and </title>. Then, end the head with </head>. You will end up with:
Other data to put into the head includes metadata and stylesheet data.
The next step is to add the body of your website. This is where all the important stuff goes. Start out the body with the <body> tag. In a basic website, all the real content goes in the body.
The most basic way to write the body is to simply write a heading, then type.
Within the body, start off by writing the first heading. This should be big, so the <h1> tag should do the trick. After that, simply write the text of the site. Remember the syntax for making links:
And for making images:
Remember, most HTML Tips can be simply inserted into the body and used immediately.
Finish off the body with </body>, and the body is done.
The code with the body included should look like:
Remember, you still have 1 more tag to close: the <html> tag. Close it with </html>, and your website is complete. The final code:
If you want to see what that code looks like in a real web browser, go to this page, which uses the exact HTML code above:
Test Site
Your basic website is complete! For more advice on tables, frames, text formatting, Javascript, etc., look at the rest of the tips on this site. Almost all of them can simply be inserted in the body. Now you know how to make your website from HTML!
Also, if you are using Blogger, you can go to the "template" section of the dashboard, and edit the template, which is raw HTML. Be careful not to change too much stuff. The beginning data is stylesheet data, so don't mess around unless you know what you're doing. However, you can find the sidebar, and mess around with that quite freely.
You can always use a program like Frontpage or Dreamweaver, but raw coding is always the best way to make your website exactly like you want it!
First, remember that most tags must be eventually closed. The syntax would be: <tag> CONTENT </tag>.
Open a text editor such as notepad, or the HTML editor for your hosting service.
The first tag in your website should be <html>, which starts the HTML site.
Immediately after this should come the <head> tag.
So far, you should have the following:
<html>
<head>
The next step is to enter the title of your website. This is what shows up in the title bar of the internet browser. Put the title between the <title> and </title>. Then, end the head with </head>. You will end up with:
<html>
<head>
<title>TITLE</title>
</head>
Other data to put into the head includes metadata and stylesheet data.
The next step is to add the body of your website. This is where all the important stuff goes. Start out the body with the <body> tag. In a basic website, all the real content goes in the body.
The most basic way to write the body is to simply write a heading, then type.
Within the body, start off by writing the first heading. This should be big, so the <h1> tag should do the trick. After that, simply write the text of the site. Remember the syntax for making links:
<a href="http://www.linktarget.com">LINK</a>
And for making images:
<img src="http://imagesite.com/image.jpg">
.Remember, most HTML Tips can be simply inserted into the body and used immediately.
Finish off the body with </body>, and the body is done.
The code with the body included should look like:
<html>
<head>
<title>TITLE</title>
</head>
<body>
<h1>THE SITE</h1>
blablabla
<a href="http://www.linktarget.com">LINK</a>
IMAGE:
<img src="http://imagesite.com/image.jpg">
</body>
Remember, you still have 1 more tag to close: the <html> tag. Close it with </html>, and your website is complete. The final code:
<html>
<head>
<title>TITLE</title>
</head>
<body>
<h1>THE SITE</h1>
blablabla
<a href="http://www.linktarget.com">LINK</a>
IMAGE:
<img src="http://imagesite.com/image.jpg">
</body>
</html>
If you want to see what that code looks like in a real web browser, go to this page, which uses the exact HTML code above:
Test Site
Your basic website is complete! For more advice on tables, frames, text formatting, Javascript, etc., look at the rest of the tips on this site. Almost all of them can simply be inserted in the body. Now you know how to make your website from HTML!
Also, if you are using Blogger, you can go to the "template" section of the dashboard, and edit the template, which is raw HTML. Be careful not to change too much stuff. The beginning data is stylesheet data, so don't mess around unless you know what you're doing. However, you can find the sidebar, and mess around with that quite freely.
You can always use a program like Frontpage or Dreamweaver, but raw coding is always the best way to make your website exactly like you want it!
50 Comments:
Awsome tutorial! Now make sure to visit Scuzz Forum for a pratical aplication and discussion of all of these techniques! !
By Anonymous, at May 25, 2005
Hey Cavalkaf, thanks for the comment, but I thought that it would be a real commenter from somwhere else, not someone from the forum. Oh well, comments are good no matter what.
By GL, at May 26, 2005
Wow.. i feel fond treasure by ur Blog.. Thank you very much indeed, I really need them..
By Anonymous, at August 15, 2005
umm, so how do i get my own webpage, in the begging ???
By Anonymous, at November 24, 2005
You have to find a hosting service (there are many free ones available), then upload a .html file to it.
Another alternative would be to simply use Blogger, go to settings, and edit the template HTML.
By GL, at December 04, 2005
damn why am i wanting to learn html now when all tutorials are too old lol
By Anonymous, at December 07, 2008
that is very good tutorial.
it is very easy to understand.
it is very good for beginner who want to be website designer.
By Unknown, at February 16, 2009
thanks for sharing it.
that is really excellent turorial for website design
By Anonymous, at February 17, 2009
great work here i have learn that how we can create and build a website so this post is useful for those who wish to start web designing
By James praker, at October 12, 2009
This tip is very good !
I used it on my blog http://psmoviesdownload.blogspot.com/
Thank you :-)
By http://psmoviesdownload.blogspot.com/, at May 11, 2010
This tutorial does a really good job of showing somebody how to layout a simple webpage.
By mirrorguy, at September 13, 2010
Good tips for a beginner. Thanks.
By php2ranjan, at November 18, 2010
Easy to understand.
By Ruchiwebsolutions, at November 18, 2010
Great info. Good tips for a beginner.
By Seoruchi, at November 18, 2010
Wow, really awesome explanation and tutorial to create a website using html. I really enjoyed reading it and learnt so many things through this post. Great work Thanks for sharing this post.
By joomla developer, at April 14, 2011
Is this code help with developing word press can i use this codes in HTML widget? Is it essential to use body tags?
By Microbiology Guy, at June 29, 2011
This comment has been removed by the author.
By Cris Monde, at May 28, 2012
you Without n Psd To Html one can’t have a presentable website for the customer to view their services; and while doing the conversion, every step should be thought out clearly. Which font to use, how many margins to use, colors, graphics, pictures, etc
By convert psd to html, at June 29, 2012
I will download!
Very Beautiful
Photoshop
By vina7, at August 08, 2012
Nice tutorial. I am confused will i be able to learn HTML anyway ?
By Air Duct Cleaning Tucson, at December 29, 2012
An Informative Blogs. In Convertion of Images like Jpg To HTML, JPEG To HTML, Image To HTML, Photo To HTML there is a need of making decisions and also recommends the resulting knowledge of coding. A Dedicated work you have displayed.
By Unknown, at March 23, 2013
Hello there! I am glad to stop by your site and know more about Accountant.
Keep it up! This is a good read. You have such an interesting and informative page.
I will be looking forward to visit your page again and for your other posts as well.
Thank you for sharing your thoughts about Accountant in your area."Online bookkeeping services"
By Unknown, at April 13, 2013
Great tips! Everyone should learn some thing with the help of this post. I want some thing extra from your side.
By Email Chopper, at September 10, 2013
This comment has been removed by the author.
By sadhana, at October 27, 2013
thank you so much. this was helpful
Try this HTML Tutorials http://mkmovietrailer.blogspot.com/2013/09/html-tutorials.html
By M K D tutorials, at October 30, 2013
壯陽藥品犀利士樂威壯樂威壯樂威壯樂威壯樂威壯壯陽藥樂威壯壯陽藥壯陽藥壯陽藥成人藥品性藥品性藥品犀利士犀利士犀利士犀利士威而鋼威而鋼威而鋼壯陽藥威而鋼威而鋼威而鋼威而鋼樂威壯犀利士威而鋼威而鋼威而鋼威而鋼壯陽藥品壯陽藥威而鋼威而鋼犀利士犀利士威而鋼樂威壯壯陽藥威而鋼威而鋼壯陽藥情趣藥品春藥犀利士犀利士壯陽藥情趣藥品春藥情色貼圖犀利士威而鋼
By 銘, at March 04, 2014
Nice stuff! Check this for more tricks http://www.google-tricks.com/
By Chriscs7, at March 29, 2014
Very good for the basics, although you forgot to close your img tag. It is self-closing, but it needs a forward-slash before the end carrot.
By Unknown, at April 06, 2014
nice tutorial. tour travels in erode
By Unknown, at February 03, 2015
nice stuff, with practical application. travel agency in erode
By Unknown, at February 17, 2015
Hey Cavalkaf, thanks for the comment, but I thought that it would be a real commenter from somwhere else, not someone from the forum. Oh well, comments are good no matter what.
ncrypted websites
By Crowdfunding Script, at April 15, 2015
Wow its really usefull tutorial thanks for your tips.Easy to understand for begginners.
By Freedrug, at November 04, 2015
Thanx for sharing helpful meterial.
By Latest News Updates, at February 24, 2017
Really great articles, all the tips explained systematically and surely helpful to many freshers as well as programmers. Thank you for sharing… Keep Writing… - https://goo.gl/zBp6GJ
By Clones Cloud, at October 12, 2017
nic post...
for latest programming language tips & tricks and info go to mkniit.com
By mkniit, at July 17, 2018
for interesting information visit http://gniithelp.blogpsot.com
By GNIIT HELP, at July 17, 2018
very nic post...
for more latest programming info in hindi visit http://hindidea.blogspot.com
By Hindi Idea, at July 17, 2018
very nic post...
for more latest tips and tricks and programming info in hindi visit http://mkbloggers.blogspot.com
By Team Tips Arena, at July 17, 2018
very nic post...
for niit cycle test, lab@homes, assignments, projects and more latest programming info visit http://solutionrk.blogspot.com
By Rk Solution, at July 17, 2018
Your post will help those people who want to learn HTML. Learning is in the beginning, so studying the basic codes will help us a lot to step up to more difficult codes.
IT Company Marikina
By Cris Monde, at August 31, 2018
This is a great article. It gave me a lot of useful information. thank you very much.
Uber Clone Script
Uber Clone App
By Uber Clone, at September 08, 2018
This is a really helpful blog! Keep it up!
Gojek Clone App
By Gojek Clone, at December 08, 2018
Thanks for sharing this quality information with us. I really enjoyed reading.
visit our web
By harry, at March 04, 2019
This Is really Very Nice Article.I really Liked it.
For information regarding digital marketing services please visit to the link.
Digital marketing company in Hyderabad..
By keen Digital, at July 04, 2019
Get the best airbnb clone script from macandro.
By Mathew Bairstow, at March 05, 2020
Dynode Software Best Software Company Bihar is a ERP & IT/Software Development company. We specialize in web development, e- commerce, mobile development, hosting, software development, Human Resource and more. We work with the People and Team of well-experienced hands.
By Ankit Kumar Singh, at April 30, 2021
Thanks for sharing this blog with us! On Demand App Development Services
By On Demand App Development Services, at July 28, 2021
Thanks for sharing
Global Market Research Firm
Project Management Services in India
Survey programming and Hosting Services in India
Data Collection and Processing Services in India
Consulting Marketing Research Services
By Anonymous, at September 03, 2021
awesome tutorial. thanks for sharing.
By AppLion soft, at February 02, 2022
I think this is an informative post and it is very useful and knowledgeable. therefore, I would like to thank you for the efforts you have made in writing this article.
APSU BA 2nd Year Result 2021
APSU BA 3rd Year Result 2021
By APSU BA 1st Year Result 2021, at April 25, 2022
Post a Comment
<< Home