Category: Html 5
-
HTML Styles
Styling HTML Elements HTML is quite limited when it comes to the presentation of a web page. It was originally designed as a simple way of presenting information. CSS (Cascading Style Sheets) was introduced in December 1996 by the World Wide Web Consortium (W3C) to provide a better way to style HTML elements. With CSS, it becomes very easy…
-
HTML Text Formatting
Formatting Text with HTML HTML provides several tags that you can use to make some text on your web pages to appear differently than normal text, for example, you can use the tag <b> to make the text bold, tag <i> to make the text italic, tag <mark> to highlight the text, tag <code> to display a fragment of computer code, tags <ins> and <del> for marking…
-
HTML Links
Creating Links in HTML A link or hyperlink is a connection from one web resource to another. Links allow users to move seamlessly from one page to another, on any server anywhere in the world. A link has two ends, called anchors. The link starts at the source anchor and points to the destination anchor,…
-
HTML Paragraphs
Creating Paragraphs Paragraph element is used to publish text on the web pages. Paragraphs are defined with the <p> tag. Paragraph tag is a very basic and typically the first tag you will need to publish your text on the web pages. Here’s an example: Example Note: Browsers built-in style sheets automatically create some space above and below…
-
HTML Headings
Organizing Content with Headings Headings help in defining the hierarchy and the structure of the web page content. HTML offers six levels of heading tags, <h1> through <h6>; the lower the heading level number, the greater its importance — therefore <h1> tag defines the most important heading, whereas the <h6> tag defines the least important heading in the document. By default, browsers…
-
HTML Attributes
What are Attributes Attributes define additional characteristics or properties of the element such as width and height of an image. Attributes are always specified in the start tag (or opening tag) and usually consist of name/value pairs like name=”value”. Attribute values should always be enclosed in quotation marks. Also, some attributes are required for certain elements.…
-
Why use HTML5
It is enriched with advance features which makes it easy and interactive for designer/developer and users. It allows you to play a video and audio file. It allows you to draw on a canvas. It facilitate you to design better forms and build web applications that work offline. It provides you advance features for that…
-
HTML5 Tutorial
HTML5 tutorial provides details of all 40+ HTML tags including audio, video, header, footer, data, datalist, article etc. This HTML tutorial is designed for beginners and professionals. HTML5 is a next version of HTML. Here, you will get some brand new features which will make HTML much easier. These new introducing features make your website layout…