How to make text & text boxes appear bigger in mobile sites

html, mobile

Solution

I think this is what I wanted

<meta name="viewport" content="width=device-width, initial-scale=1">

This sets the width to device width so that on load the page and its elements appears larger.

Problem

I'm new to developing mobile sites and I'm having a problem where text and textboxes and dropdownlists are appearing too small on the screen. What is the correct way to make these appear bigger? Thanks.

Original source