Categories
Html5

New html5 tips and techniques

New html5 tips and techniques for the latest evolution of the standard that defines HTML is HTML5. It represents two different concepts: Latest version of the language HTML, with new elements, attributes, and behaviors. HTML tips & Techniques: New Doctype Still using XHTML doctype? Its time to remove. <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” […]

Categories
Css Css3 Html Html5 Web Design & Development

How to link CSS to HTML

In the context of web design, linking CSS to HTML is one of the most basic concepts. If you are a newcomer, you may be puzzled about how one can make the website look stylish and well-arranged. If your problem is in formatting, then the tool you need is CSS, or Cascading Style Sheets. CSS […]

Categories
Technology

Design Trends 2017 You Should be Aware of

The amount of information on the Internet is constantly growing as well as the demands to web pages. Tricks and tools which seemed new and interesting a few years ago attract people no more, and even irritates them at times. That’s why web designers are constantly working on improving user experience, relying on the technological […]

Categories
Html Html5

Best place to include script tags in HTML

While embedding JavaScript in an HTML and putting the script tags i.e. included in JavaScript, where is the best place? Let’s see what happens when browser loads a website: First it fetch the HTML. Starts persing the HTML. Encounters a <script> tag referencing an external script file. Browser requests the script file. Script is downloaded […]

Categories
Html Html5

Difference between section and div in HTML

The section tag defines sections in a document like chapters, headers, footers whereas div tag defines a division in an HTML document. Here we will discuss the difference between section and div in HTML. In HTML, <section> means that the content inside is grouped and should appear as a entry in an outline of a […]

Categories
Html

Embedding PDFs without JavaScript

Without JavaScript, a PDF can be embedded into HTML pages. Embedding PDFs without JavaScript is a major part in HTML. In below there are 4 examples that describes how to use this common techniques. For embedding a PDF file into a HTML document, this is an open-source standards-friendly JavaScript utility. We need to know that […]

Categories
Html

Redirect from an HTML page

Redirect HTML page is done using the meta refresh for fallback purposes in the head section of a HTML i.e. replace old page with the URL of the page you need to redirect to. This is  the simplest way to Redirect HTML page i.e. one URL to another URL with the Meta Refresh tag. We […]

Categories
Html5

Make a placeholder for a “select” box

We all know that for a text input, the placeholders are working fine. But what about if we use a placeholder for a select box as well? Let’s see. Sometimes we need to use placeholder for a selectbox and making grey color is also remarkable. Suppose, we have a following html for a selectbox: <select> […]

Categories
Css Html

Disable resizable property of textarea

Want to disable resizable property of textarea? Here is some tips to prevent the click on the bottom right corner of the textarea. To disable resizable property of textarea, there are a few options. <textarea name=”txtName” id=”txtID”></textarea> CSS can solve this problem and unfortunately it’s only supported on 60% of used browsers nowadays. Basically, you […]

Categories
Html

Valid values for id attribute in HTML

While creating the id attributes for HTML elements, we need to provide Valid values for id attribute. Let’s see what are they. ID and NAME value must contain with a letter (A-Za-z) and this may be followed by any number of letters, digits (0-9), underscores (“_”), hyphens (“-“), periods (“.”) and colons (“:”). In HTML […]