Reading-Notes

HtmlSummary

What Is HTML??

Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.

HTML Describes the Structure of Pages Using Elements
Tags act like containers. They tell you something about the information that lies between their opening and closing tags.

Tags usually come in pairs. The opening tag denotes the start of a piece of content; the closing tag denotes the end.

Opening tags can carry attributes, which tell us more about the content of that element.

Attributes require a name and a value.

To learn HTML you need to know what tags are available for you to use, what they do, and where they can go

### HTML code sample

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

HTML headings are defined with the <h1> to <h6> tags.

HTML paragraphs are defined with the <p> tag

### Formatting Elements:

formatting elements were designed to display special types of text:

- Bold text

- Important text

- Italic text

- Marked text

- Smaller text

- Subscript text

WireFrames

A wireframe is a simple sketch of the key information that needs to go on each page of a site. It shows the hierarchy of the information and how much space it might require

Site maps allow you to plan the structure of a site

Flash :

Flash is a very popular technology used to add animations, video, and audio to websites.

HTML5 introduces new

### HTML Forms:

An HTML form is used to collect user input. The user input is most often sent to a server for processing.

The <form> Element

The HTML <form> element is used to create an HTML form for user input:

. form elements .

### Notes In HTML:

Notes can be used to notify the user about something special: danger, success, information or warning

Example:

Danger! Some text...