Tutorials Navigation
[HTML] HTML Basics
Tutorial Name: [HTML] HTML Basics
Category: PC Tutorials
Submitted By: Nasyr
Date Added:
Comments: 1
Views: 509
Related Forum: PC Building Forum
Share:
HTML Documents
All HTML documents must start with a document type declaration: <!DOCTYPE html>.
The HTML document itself begins with <html> and ends with </html>.
The visible part of the HTML document is between <body> and </body>.
Example
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
HTML Headings
HTML headings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading. <h6> defines the least important heading:
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
HTML Paragraphs
HTML paragraphs are defined with the <p> tag:
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
HTML Links
HTML links are defined with the <a> tag:
<a href="https://www.w3schools.com">This is a link</a>
HTML Images
HTML images are defined with the <img> tag.
The source file (src), alternative text (alt), width, and height are provided as attributes:
<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">
Source: [ Register or Signin to view external links. ]
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)
"[HTML] HTML Basics" :: Login/Create an Account :: 1 comment