Author: admin
-
HTML Layout
Creating Website Layouts Creating a website layout is the activity of positioning the various elements that make a web page in a well-structured manner and give appealing look to the website. You have seen most websites on the internet usually display their content in multiple rows and columns, formatted like a magazine or newspaper to…
-
HTML Doctypes
Understanding the HTML5 Doctype A Document Type Declaration, or DOCTYPE for short, is an instruction to the web browser about the version of markup language in which a web page is written. A DOCTYPE declaration appears at the top of a web page before all other elements. According to the HTML specification or standards, every…
-
HTML iFrame
What is iframe An iframe or inline frame is used to display external objects including other web pages within a web page. An iframe pretty much acts like a mini web browser within a web browser. Also, the content inside an iframe exists entirely independent from the surrounding elements. The basic syntax for adding an…
-
HTML Forms
What is HTML Form HTML Forms are required to collect different kinds of user inputs, such as contact details like name, email address, phone numbers, or details like credit card information, etc. Forms contain special elements called controls like inputbox, checkboxes, radio-buttons, submit buttons, etc. Users generally complete a form by modifying its controls e.g.…
-
HTML Lists
Working with HTML Lists HTML lists are used to present list of information in well formed and semantic way. There are three different types of list in HTML and each one has a specific purpose and meaning. Note: Inside a list item you can put text, images, links, line breaks, etc. You can also place an…
-
HTML Tables
Creating Tables in HTML HTML table allows you to arrange data into rows and columns. They are commonly used to display tabular data like product listings, customer’s details, financial reports, and so on. You can create a table using the <table> element. Inside the <table> element, you can use the <tr> elements to create rows, and to create columns inside a…
-
HTML Images
Inserting Images into Web Pages Images enhance visual appearance of the web pages by making them more interesting and colorful. The <img> tag is used to insert images in the HTML documents. It is an empty element and contains attributes only. The syntax of the <img> tag can be given with: <img src=”url” alt=”some_text“> The following example inserts three images on…
-
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,…