Html Forms with Radio Button CODE
<!DOCTYPE html>>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="nav.css">
<script src="https://use.fontawesome.com/d07a8c2f55.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<title>Html Froms</title>
</head>
<body>
<h1>Radio Button</h1>
<form>
<input type="radio"id="html">
<label for="html">html</label><br>
<input type="radio"id="css">
<label for="css">css</label><br>
<input type="radio"id="php">
<label for="php">php</label>
</form>
</body>
</html>
No comments:
Post a Comment