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
Html5

HTML5 – Tips & Tricks

HTML5 has a lot of new tools to build website for better user experience and it is strong and powerful version of HTML. For Mobile phone applications it is used to a very great extent. Here are some tips and tricks for HTML5 HTML <!DOCTYPE> Declaration:The <!DOCTYPE> declaration is the first tag in your HTML […]

Categories
Html5

Tips for fast loading HTML5 videos

HTML5 videos is becoming more popular with day by day. So for displaying the video in website it should be well-designed and load quickly. The complexity of the HTML5 video arises not from the syntax, but from the browser support and encoding video also. To build a successful HTML5 site with a video display, you’ll […]

Categories
Html5

Tips for responsive design

A new web standard that emerges into the web world is responsive design where many software companies have accepted the challenge and leads to a new design solutions. Here we will discuss some responsive design tips which will help to you in your design to make it more perfect. Plan first and design: Make sure […]

Categories
Css3

Using calc() calculate values in css

calc() function is a good feature of CSS. For arithmetic calculations in CSS it is used. You can use it for percentages and pixels also. In IE9 towards it works also. This is a native CSS way for doing simple math in CSS which is a replacement for any length value. It has four simple […]

Categories
Css3

Webfonts Explained

Unlike web safe fonts a webfont is a special font used on websites using the CSS @font-face declaration. A webfont has four flavors. A TrueType, WOFF, EOT and an SVG file. To target in different browsers each one is designed. You will require all four files when using webfonts for a website. You can get […]

Categories
AngularJS

Directives of AngularJS

To extend html, AngularJS directives are used. Now We will discuss following directives: List of directives: ng-app : Directives of AngularJS that defines and links an AngularJS application to HTML. It defines the root element. <div ng-app=””> … </div> ng-init : To initializes application data. It is used to define values to the variables which […]

Categories
Css

CSS Picture frame type border

You can create CSS Picture frame type border using css styles. For creating a CSS Picture frame type border you can use this code: .htmlframe { position: relative; height: 100vh; width: 100%; background-image: linear-gradient(to top right, transparent 48.5%, gray 48.5%, gray 51.5%, transparent 51.5%), linear-gradient(to top right, transparent 48.5%, gray 48.5%, gray 51.5%, transparent 51.5%), […]