Tutorials Navigation

Tutorials :: New :: Popular :: Top Rated

Tutorials: 18,326 Categories: 12

Total Tutorial Views: 41,416,306

[HTML] HTML Basics

Tutorial Name: [HTML] HTML Basics  

Category: PC Tutorials

Submitted By: Nasyr

Date Added:

Comments: 1

Views: 497

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>


[ Register or Signin to view external links. ]





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>


[ Register or Signin to view external links. ]





HTML Paragraphs
HTML paragraphs are defined with the <p> tag:

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>


[ Register or Signin to view external links. ]





HTML Links
HTML links are defined with the <a> tag:

<a href="https://www.w3schools.com">This is a link</a>


[ Register or Signin to view external links. ]





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">


[ Register or Signin to view external links. ]


Source: [ Register or Signin to view external links. ]

Ratings

Current rating: 6.00 by 2 users
Please take one second and rate this tutorial...

Not a Chance
1
2
3
4
5
6
7
8
9
10
Absolutely

Comments

"[HTML] HTML Basics" :: Login/Create an Account :: 1 comment

If you would like to post a comment please signin to your account or register for an account.

KatsumiPosted:

Pretty much the first 3 weeks of a college computer class in a single tutorial lol