HTML Introduction Part 2


This entry is part 2 of 3 in the series HTML

Basic HTML Concepts

A webpage is made up of three components: text content, references to other files and markup. HTML markup is composed of elements, attributes and values. Semantic HTML means that content is marked up with HTML elements that best describe it without regard for how the content should look. HTML doesn’t control how your pages look, CSS does. Note that every web browser has a built-in CSS file that dictates how each HTML element should be displayed by default. When you write your CSS it overrides these settings.

Other References for Further Study

  • w3schools.com has reference and tutorial information on HTML, CSS, JavaScript, SQL, PHP, ASP, XML, AJAX and graphics and more.
  • An HTML and other references that have cheat sheets linked to mozilla. It is at overAPI.com. There are several cheat sheets here.

Attributes

Attributes provide additional information about HTML elements. HTML elements can have attributes. Attributes are always specified in the start tag. Attributes come in name/value pairs like: name=”value”.

W3Schools is a web developer’s site. It provides tutorials and references covering many aspects of web programming, including HTML, CSS, JavaScript, XML, SQL, PHP, ASP, etc.

<p title="About W3Schools">
W3Schools is a web developer's site. It provides tutorials and references covering many aspects of web programming, including HTML, CSS, JavaScript, XML, SQL, PHP, ASP, etc.
</p> 

For information on HTML global attributes you can go to the w3schools.com website.

For an example of some HTML code, have a look at the post Web Pages at this site.

Also have a look at another blog post called HTML Introduction Part 1.

Series Navigation<< HTML IntroductionHTML Character References (Entities) >>