Skip to main content

Home/ Web Development & Mobile App/ Group items tagged page

Rss Feed Group items tagged

Vernon Fowler

Home Page Goals · An A List Apart Article - 0 views

  • home pages themselves have a unique set of design goals.
  • Remember that smallest, deepest element I described earlier? This is the atomic element—for a news site, it’s the story page; for a search engine, it’s the search result; for a store, it’s a product page. This page accounts for 60 to 75 percent of all page views on the site. The rest belong to the home page.
Biztech Consultancy

Facebook Fan Page Development - 0 views

  •  
    Facebook is a widely acclaimed social networking site. Facebook provides many tools for maximizing the effect of your presence on the social network, most of all by means of business pages, also known as fan pages.
Jenny Smith

About | Mobile Application Development Services - 0 views

  •  
    This is an example of a page. Unlike posts, which are displayed on your blog's front page in the order they're published, pages are better suited for more timeless content that you want to be easily accessible, like your About or Contact information. Click the Edit link to make changes to this page or add…
Biztech Consultancy

Dynamic Website - latest development in the world of websites - 1 views

  •  
    A dynamic website uses a database to gather, manage and display information. Database driven are used for websites that change constantly with areas such as product inventory, news or listing information. Dynamic websites contain Web pages that are generated in real-time. These pages include Web scripting code, such as PHP or ASP. When a dynamic page is accessed, the code within the page is parsed on the Web server and the resulting HTML is sent to the client's Web browser.
Biztech Consultancy

Some Steps of Convert HTML to WordPress - 0 views

  •  
    Static Web Site and .html web page on the site and we want to move it to WordPress. Less the number of static pages, less the effort is required to convert. WordPress websites are referred as dynamic and the pages have different ending like .PHP .WordPress. It just takes couple of hours when it comes to changing website content and working with a blog.
Biztech Consultancy

Convert your static website to dynamic website - 0 views

  •  
    Converting Static Website to a dynamic website requires a certain level of programming experience. We will help you to convert your static pages to be dynamic with no data loss.
Vernon Fowler

Page Controls - Controls - iOS Human Interface Guidelines - 0 views

  • Navigation always occurs sequentially, usually by swiping the page to one side.
  • If your app needs to display more than 20 pages as peers, consider using a different arrangement—such as a grid—that enables nonsequential navigation.
iEvolution GmbH

Web design Is An important Decision For Any Business - 0 views

Selecting up a Web design company is an important and vital decision for any business in today's scenario. Website represents your business face in today's world so the design should have classy lo...

Webdesign webdesignservicesinSwitzerland webdesignWollerau WebdesigningSwitzerland Affordablewebdesign professionalwebdesign responsivewebdesign

started by iEvolution GmbH on 27 Jun 16 no follow-up yet
Vernon Fowler

TYPOGRAPHY: Alignment - 0 views

  • Centered and right-justified text blocks are difficult to read.
  • We read from left to right, anchoring our tracking across the page at the vertical line of the left margin.
  • The ragged left margins produced by centering or right-justifying text make that scanning much harder, because your eye needs to search for the beginning of each new line.
  • ...1 more annotation...
  • Until typographic options for Web pages become more sophisticated, we recommend that you use left-justified text blocks and headlines as the best solution for most layout situations.
Biztech Consultancy

All about the Google+ 1 Button - 0 views

  •  
    The Google + 1 button shows up on Google search results, on Google ads, and on other sites when you are signed in to your Google account. In case you like something you can click on the button. When somebody else comes on that particular page, he/she will know that you have +1′d the item.
Biztech Consultancy

Biztech Consultancy - 0 views

shared by Biztech Consultancy on 07 May 14 - No Cached
  •  
    WordPress websites are referred as dynamic and the pages have different ending like .PHP .WordPress. It just takes couple of hours when it comes to changing website content and working with a blog.
Richard Boss

Magento Extension - Easy Donate - 0 views

  •  
    Easy Donate - Magento Extension is developed to allow customers to Donate Funds on Magento cart page.
moontechnolabs

The Impact Of Bounce Rate Measurability On Your Mobile UX - 1 views

  •  
    Bounce rate is the number of users visiting the website or app and drive away after just browsing only first page. Thus to reduce bounce rate top mobile app development company works on UI/UX. To know more visit this blog.
Biztech Consultancy

Silent Geo Locations - Android App by Biztech Consultancy, adding Value to Mobile Manag... - 1 views

  •  
    Silent on Geo Locations application would only require specific locations where the user would prefer to activate the silent mode; rest is taken care of by the device itself. It is equipped with various features like, multiple geo location support, option to edit locations (add, delete or modify), set radius, flexible enough to reset the setting of the application anytime, saved location can be viewed anytime using Google Map and option of enable or disable is available from the home page anytime.
Biztech Consultancy

Role of Typography in Building Business Web Solutions - 0 views

  •  
    The selection of the fonts, size, line-spacing, letter-spacing etc. are the parts of typography. Typography being the first impression, business solutions requires typography that conveys the exact message rather distracting the readers with unpleasant font face. Every aspect of the website design, be it its readability, length of the article, user experience etc. together makes a business solution convincing.
iEvolution GmbH

Benefits Of Choosing The Leading Web Design Firm - 0 views

  •  
    At iEvolution GmbH, We offering web design and logo design services as well as mobile apps and eCommerce solutions at very affordable price. As we are leading web design firm in Wollerau, Switzerland providing best and quality web design solutions.
iEvolution GmbH

Remarkable Website - Creative Logo For Your Business Will Help You Get There - 0 views

There are so many logo design companies so it becomes difficult to find the accurate designer for your work.  Logo should be impressive so it leaves long lasting impression on the user. Thus i...

logodesign creativelogodesign customlogodesign logodesignservices logodesigning logodesignSwitzerland logodesignservicesinWollerau affordablelogodesign professionallogodesign

started by iEvolution GmbH on 23 Jun 16 no follow-up yet
Vernon Fowler

Font sizing with rem - Snook.ca - 0 views

  • The problem with em-based font sizing is that the font size compounds. A list within a list isn't 14px, it's 20px. Go another level deeper and it's 27px!
  • The rem unit is relative to the root—or the html—element. That means that we can define a single font size on the html element and define all rem units to be a percentage of that. html { font-size: 62.5%; } body { font-size: 1.4rem; } /* =14px */ h1 { font-size: 2.4rem; } /* =24px */
  • I'm defining a base font-size of 62.5% to have the convenience of sizing rems in a way that is similar to using px.
  • ...3 more annotations...
  • consistent and predictable sizing in all browsers, and resizable text in the current versions of all major browsers
  • We can specify the fall-back using px, if you don't mind users of older versions of Internet Explorer still being unable to resize the text (well, there's still page zoom in IE7 and IE8). To do so, we specify the font-size using px units first and then define it again using rem units. html { font-size: 62.5%; } body { font-size: 14px; font-size: 1.4rem; } /* =14px */ h1 { font-size: 24px; font-size: 2.4rem; } /* =24px */
  • The compounding nature of em-based font-sizing can be frustrating so what else can we do?
Vernon Fowler

University Websites: Top 10 Design Guidelines - 0 views

  • 8. Follow the user journey: check the main tasks for each of your audiences Identify the top tasks that you want your users to accomplish and follow the path that they have to take to get there. See if and when they have to leave the global site. See if they are bounced from one office to another in search of a form or procedure. Keep your eyes open. Because university sites are so often large, with each department or office owning its own page and information, it’s common to find duplicate, contradictory, missing, or incomplete information. Follow the journey, starting at different entry points, and see what you learn. If you’re already using personas, test them out. Better yet, do some quick user testing. (Testing doesn’t have to be expensive. And, by testing with just 5 users, you can uncover 85% of the issues).
1 - 20 of 31 Next ›
Showing 20 items per page