Tutorials Navigation
Basic HTML programming
Tutorial Name: Basic HTML programming
Category: PC Tutorials
Submitted By: 5FDP_Jekyll
Date Added:
Comments: 4
Views: 2,020
Related Forum: PC Building Forum
Share:
Requirements for programming HTML:
1: Time and patience
2: A text editing program such as Notepad, Notepad++ or Dreamweaver.
First and foremost to understand what HTML is you must first know what HTML stands for. HTML is the abbreviataion of Hypetext Markup Language, It is one of the two must needed languages for programming a website from scratch, the other being CSS or Casscading Style Sheet.
So to begin, the starting layout for an HTML file is this:
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
Now you should also declare what kind of HTML you will be using. More info about this can be found [ Register or Signin to view external links. ]
A few more of the tags that will be used in HTML are; <p>, <div>, <table>, <ol>, <ul>, and <li>. Please note that almost all of the tags in HTML must be closed by the following tag(s) </(tag)> however some like the image tag which is <img> may be closed by adding in an "/" at the end.
Another tag which is very important to know is the <a> tag. This is what allows you to link to pages on your site or to another website. An example of this using TheTechGame's home button is the following:
<a href="/">Home</a>
Now you may be asking what does the href="/" for? The answer is that, it is used for telling the site where to go so since it is going to the root directory it will take you to the site's homepage on a website however on a computer it will take you to your C: Drive or which ever drive you are currently using.
Now to add in an image you would use a code like this:
<img src="(Image Location).(Image Extension)"/>
The src part in the above code stands for Source, this is used to tell the website where your image is located.
On a final note I would like to wish you luck in programming and a few places which have helped me to learn all that i know about HTML and CSS coding.
Ratings
Comments
XGKModzSiiNPosted:
This is a very good tutorial! Though, it might seem a little bit confusing for some people though :/
Related Tutorials
- 01. Emulating Xbox 360 on PC for Running COD4 With Mods(3,492)
- 02. How to: Matrix Numbers | Batch File(1,903)
- 03. How to Password Protect Files on Windows(857)
- 04. How to play Socom 2/3/ and Combined Assault on PC(6,715)
- 05. Modern Warfare 2 Vac Ban Bypass Tutorial(6,133)
- 06. How to embed an image on TheTechGame(3,098)
- 07. [PC] NIOH 2 OTHER USER SAVE RESIGN(12,981)
- 08. Host bot lobbies! Full Tutorial!(11,241)
- 09. Unban yourself [Plutonium BO2](14,240)
- 10. Fall Guys - How to Change Your Name Color on Fall Guys(8,385)
- 11. Best Crosshair Settings for Valorant(6,525)
- 12. Othercide The Surgeon Boss Guide(2,539)
- 13. Othercide Remembrances Unlock Guide(4,460)
- 14. Othercide Beginners Tips and Tricks(2,708)
- 15. How to Fix Grounded Crashes, Loading Time, Low FPS and Other(4,845)
"Basic HTML programming" :: Login/Create an Account :: 4 comments