Author: admin
-
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…
-
HTML JavaScript
A Script is a small program which is used with HTML to make web pages more attractive, dynamic and interactive, such as an alert popup window on mouse click. Currently, the most popular scripting language is JavaScript used for websites. Example: HTML <script> Tag The HTML <script> tag is used to specify a client-side script.…
-
HTML iframes
HTML Iframe is used to display a nested webpage (a webpage within a webpage). The HTML <iframe> tag defines an inline frame, hence it is also called as an Inline frame. An HTML iframe embeds another document within the current HTML document in the rectangular region. The webpage content and iframe contents can interact with…
-
HTML Id Attribute
The id attribute is used to specify the unique ID for an element of the HTML document. It allocates the unique identifier which is used by the CSS and the JavaScript for performing certain tasks. Note: In the Cascading Style sheet (CSS), we can easily select an element with the specific id by using the # symbol followed by id. Note:…
-
HTML style using CSS
Let’s suppose we have created our web page using a simple HTML code, and we want something which can present our page in a correct format, and visibly attractive. So to do this, we can style our web page with CSS (Cascading Stylesheet) properties. CSS is used to apply the style in the web page…