Skip to content

Instantly share code, notes, and snippets.

@batuhan
Created March 13, 2012 20:30
Show Gist options
  • Save batuhan/2031357 to your computer and use it in GitHub Desktop.
Save batuhan/2031357 to your computer and use it in GitHub Desktop.
begum
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>begum form</title>
</head>
<body>
<form id="ogrenci" method="post" action="">
<fieldset>
<label for="ad">AD</label>
<input type="text" name="ad">
<label for="soyad">Soyad</label>
<input type="text" name="soyad">
<label for="sifre">Sifre</label>
<input type="password" name="phone">
<label for="cinsiyet">Cinsiyet</label>
<input type="radio" name="radio" id="female" value="female" /> Kadın
<input type="radio" name="radio" id="male" value="male" />
<label for="email">E-posta</label>
<input type="email" name="eposta">
<input type="submit" name="submit" id="submit" value="gonder" />
</fieldset>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment