Categories
Html

HTML Forms

By using html forms we get input data from the user. For example registration form, contact us feedback etc. Html forms are enclosed between form element like below:<form></form> There are numerous form fields that can be use in forms: -Text field-Text area-Checkbox-Radio buttons-Select box-File field-Button-Image button-Submit button GET and POST:Form method can be two types […]

Categories
Html

HTML Entities

In many different language HTML language is used. So it contains different types of symbols or entities which are not english alphabet. These entities starts with ampersand character and finish with semicolor character. For e.g. &quot; Here is a list of entities examples: &quot; “ &apos; ‘ &amp; & &lt; < &gt; > &pound; £ […]

Categories
Html

Element Structure of HTML

HTML documents consists of multiple element structure which includes start tag, attribute, body element, end tag etc. Element Structure: The main tag of HTML is <html> and </html> which is start tag and end tag.The content element is written between two tags i.e. body tag.For example, <p>Hello there!</p> Few HTML elements have no body i.e. […]

Categories
Html

The URLs

URLs or Uniform Resource Locator is location of html document web. It consists of three parts i.e. Protocol, Domain and Resource path.For e.g. http://www.namasteui.com/index.php where http is protocol, www.namasteui.com is domain and index.php is resource path. It also has a query string i.e.http://www.namasteui.com/index.php?value=1&page=3So the query string for the above url is: ?value=1&page=3 which is a […]

Categories
Html

The Web HTML

It takes a little amount of time to know what web is and how it is related to html. Using browser i.e. internet explorer, firefox, chrome etc you can run a html page i.e. a web. So when you view a page on web it is located somewhere on internet i.e. called server. You do […]

Categories
Html

HTML 4

HTML is basically a language on the internet for website. It basically consists of multiple pages where each pages written in .html extension. Currently the latest version is HTML5 where new elements are added. It is the abbreviation of Hyper text markup language that means you can embed links inside the text. When click on […]

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
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 […]