Tutorials Navigation
A Simple HTML Document
Tutorial Name: A Simple HTML Document
Category: PC Tutorials
Submitted By: Nasyr
Date Added:
Comments: 1
Views: 513
Related Forum: PC Building Forum
Share:
What is HTML?
- HTML is the standard markup language for creating Web pages.
HTML stands for Hyper Text Markup Language
HTML describes the structure of Web pages using markup
HTML elements are the building blocks of HTML pages
HTML elements are represented by tags
HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
Browsers do not display the HTML tags, but use them to render the content of the page
A Simple HTML Document
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Example Explained
- The <!DOCTYPE html> declaration defines this document to be HTML5
The <html> element is the root element of an HTML page
The <head> element contains meta information about the document
The <title> element specifies a title for the document
The <body> element contains the visible page content
The <h1> element defines a large heading
The <p> element defines a paragraph
Ratings
Comments
Related Tutorials
- 01. Emulating Xbox 360 on PC for Running COD4 With Mods(3,484)
- 02. How to: Matrix Numbers | Batch File(1,901)
- 03. How to Password Protect Files on Windows(856)
- 04. How to play Socom 2/3/ and Combined Assault on PC(6,703)
- 05. Modern Warfare 2 Vac Ban Bypass Tutorial(6,130)
- 06. How to embed an image on TheTechGame(3,094)
- 07. [PC] NIOH 2 OTHER USER SAVE RESIGN(12,980)
- 08. Host bot lobbies! Full Tutorial!(11,223)
- 09. Unban yourself [Plutonium BO2](14,237)
- 10. Fall Guys - How to Change Your Name Color on Fall Guys(8,383)
- 11. Best Crosshair Settings for Valorant(6,523)
- 12. Othercide The Surgeon Boss Guide(2,535)
- 13. Othercide Remembrances Unlock Guide(4,458)
- 14. Othercide Beginners Tips and Tricks(2,707)
- 15. How to Fix Grounded Crashes, Loading Time, Low FPS and Other(4,839)
"A Simple HTML Document" :: Login/Create an Account :: 1 comment