Files
freeCodeCamp/guide/arabic/html/tutorials/basic-html/radio-button/index.md

23 lines
650 B
Markdown
Raw Normal View History

---
title: Radio Button
localeTitle: زر الراديو
---
# زر الراديو
`
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
<input type="radio" name="gender" value="male"> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
`
يمكن استخدام أزرار الاختيار لتحديد خيار واحد من الخيارات المتعددة. لا يُسمح لك باختيار زرَي تشفير أو أكثر في حقل التحديد نفسه.