Tutorials Navigation
[HTML] An introduction to HTML / Creating your first webpage
Tutorial Name: [HTML] An introduction to HTML / Creating your first webpage
Category: PC Tutorials
Submitted By: -Deano
Date Added:
Comments: 1
Views: 876
Related Forum: PC Building Forum
Share:
HTML (Hyper-Text Markup Language) is one of the languages used to translate our content into the stuff you see on your screen.
A markup language typically has 'tags' which define what the content is and how it should be displayed, e.g. a "<body>" tag defines the content which will appear on the screen; it is the body of the document. Tags are followed, usually, by an ending tag such as "</body>" to signify the end of the document.
On to creating your first webpage...
All HTML documents will begin with "<html>" tags as a way for the device to understand what it is that it will be displaying.
Each HTML page is made up of the head and the body.
The head is something which is used for data and other information to be used without displaying it on-screen. Examples of content which you would place in your head section would be which fonts you want to use, where the device can find your other resources such as images and style sheets, the title of the page, and many more.
So to create your first page use the following code:
<html>
<head>
<title>My First Webpage</title>
</head>
<body>
<p>My first webpage</p>
</body>
</html>
Ratings
Comments
Related Tutorials
- 01. Emulating Xbox 360 on PC for Running COD4 With Mods(3,497)
- 02. How to: Matrix Numbers | Batch File(1,905)
- 03. How to Password Protect Files on Windows(857)
- 04. How to play Socom 2/3/ and Combined Assault on PC(6,735)
- 05. Modern Warfare 2 Vac Ban Bypass Tutorial(6,138)
- 06. How to embed an image on TheTechGame(3,100)
- 07. [PC] NIOH 2 OTHER USER SAVE RESIGN(12,992)
- 08. Host bot lobbies! Full Tutorial!(11,286)
- 09. Unban yourself [Plutonium BO2](14,243)
- 10. Fall Guys - How to Change Your Name Color on Fall Guys(8,387)
- 11. Best Crosshair Settings for Valorant(6,529)
- 12. Othercide The Surgeon Boss Guide(2,544)
- 13. Othercide Remembrances Unlock Guide(4,467)
- 14. Othercide Beginners Tips and Tricks(2,711)
- 15. How to Fix Grounded Crashes, Loading Time, Low FPS and Other(4,847)
"[HTML] An introduction to HTML / Creating your first webpage" :: Login/Create an Account :: 1 comment