Tutorials Navigation
[HTML] HTML Basics
Tutorial Name: [HTML] HTML Basics
Category: Programming Tutorials
Submitted By: Nasyr
Date Added:
Comments: 0
Views: 84
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: w3schools.com/html/html_basic.asp
Ratings
Comments
Related Tutorials
- 01. A Simple HTML Document (113)
- 02. C# Allow only 1 instance of... (700)
- 03. [VB.NET] How to make and sav... (699)
- 04. VB.NET] Open Site when Tool... (446)
- 05. [VB.NET] Opening external pr... (474)
- 06. [VB.NET] Message Box (524)
- 07. [ VB.NET ] How to use progre... (594)
- 08. [VB.NET] How to extend your... (685)
- 09. [VB.NET] How to make flashi... (1,079)
- 10. [VB.NET] How to use a progre... (879)
- 11. [VB.NET] How to Make a Splas... (972)
- 12. [VB.NET] How to Make a HTML... (603)
- 13. [VB.NET] How to Count Time! (681)
- 14. [VB.NET] How to Make a Count... (662)
- 15. [VB.NET] How to Make a Rando... (377)
"[HTML] HTML Basics" :: Login/Create an Account :: 0 comments