Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Radio Buttons</title>
5
</head>
6
<body>
7
8
<h2>Select Your Developer Track</h2>
9
<form>
10
<p>
11
<input type="radio" id="frontend" name="track" value="frontend" checked>
12
<label for="frontend">Frontend Web Developer</label>
13
</p>
14
<p>
15
<input type="radio" id="fullstack" name="track" value="fullstack">
16
<label for="fullstack">Full Stack Engineer</label>
17
</p>
18
</form>
19
20
</body>
21
</html>
