0% found this document useful (0 votes)
2 views2 pages

HTML Form

This document is an HTML job application form that includes fields for personal information such as name, date of birth, gender, email, phone number, education level, English proficiency, desired position, military status, and additional information. The form requires certain fields to be filled out and includes options for various selections. It concludes with a submit button labeled 'BAŞVUR' for submitting the application.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

HTML Form

This document is an HTML job application form that includes fields for personal information such as name, date of birth, gender, email, phone number, education level, English proficiency, desired position, military status, and additional information. The form requires certain fields to be filled out and includes options for various selections. It concludes with a submit button labeled 'BAŞVUR' for submitting the application.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>

<form name="" action="" method="">


<h2>Html İş Başvuru Formu</h2>
<table border="1">
<tr>
<td colspan="2">
<div style="text-align: center;height: 120px;line-height:
120px;width: 120px;border: 1px solid;float: right;">FOTOĞRAF</div>
</td>
</tr>
<tr>
<td>Adı Soyadı*</td>
<td>
<input type="text" name="" size="45" required/>
</td>
</tr>
<tr>
<td>Doğum Tarihi *</td>
<td>
<input type="date" name="" style="width:100%" required/>
</td>
</tr>
<tr>
<td>Cinsiyet *</td>
<td>
<input type="radio" name="cinsiyet"/> ERKEK
<input type="radio" name="cinsiyet"/> KADIN
</td>
</tr>
<tr>
<td>E-Posta Adresi *</td>
<td>
<input type="email" name="" size="45" required/>
</td>
</tr>
<tr>
<td>Telefon *</td>
<td>
<input type="tel" name="" placeholder="(___)(_______)" size="45"
required/>
</td>
</tr>
<tr>
<td>Mezuniyet Durumu *</td>
<td>
<input type="radio" name="mezuniyet"/> İlkokul
<input type="radio" name="mezuniyet"/> Ortaokul
<input type="radio" name="mezuniyet"/> Lise
<input type="radio" name="mezuniyet"/> Üniversite
</td>
</tr>
<tr>
<td>İngilizce Seviyeniz *</td>
<td>
<select id="" name="" style="width:100%">
<option value="">Seçiniz</option>
<option value="">Bilmiyorum</option>
<option value="">Orta Seviye</option>
<option value="">İleri Seviye</option>
</select>
</td>
</tr>
<tr>
<td>Çalışmak İstediğiniz Pozisyon</td>
<td>
<input type="checkbox"> Bilgi İşlem <br />
<input type="checkbox"> Muhasebe <br />
<input type="checkbox"> Pazarlama <br />
<input type="checkbox"> Asistan <br />
</td>
</tr>
<tr>
<td>Askerlik Durumu</td>
<td>
<select id="" name="" style="width:100%">
<option value="">Seçiniz</option>
<option value="">Tecilli</option>
<option value="">Muaf</option>
<option value="">Yapıldı</option>
</select>
</td>
</tr>
<tr>
<td>Ek Bilgi</td>
<td>
<textarea name="" rows="7" style="width: 100%" placeholder="Sizinle
ilgili eklemek istediğiniz diğer bilgileri buraya yazabilirsiniz."></textarea>
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="BAŞVUR"/>
</td>
</tr>
</table>
</form>
</body>
</html>

You might also like