DEV Community

Freecodez
Freecodez

Posted on

3D Radio Buttons

Hey there, You are most welcome to this article.

3D Radio Buttons

3D Radio Buttons

For full source code visit : https://freecodez.com/post/fc1amuu

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="styles.css">
  <title>3D Radio Buttons</title>
</head>
<body>
  <div class="radio-container">
    <input type="radio" id="option1" name="radio-group">
    <label for="option1">YES</label>

    <input type="radio" id="option2" name="radio-group">
    <label for="option2">NO</label>

    <input type="radio" id="option3" name="radio-group">
    <label for="option3">IDK</label>
  </div>

  <script src="script.js"></script>
</body>
</html>

Enter fullscreen mode Exit fullscreen mode

Source Code : https://freecodez.com/post/fc1amuu

For more such articles visit : https://freecodez.com

Top comments (0)