mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
54 lines
1.3 KiB
HTML
54 lines
1.3 KiB
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Radio Inputs</title>
|
|
|
|
<!-- Sets initial viewport load and disables zooming -->
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<link href="../dist/css/ionic.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<header class="bar bar-header bar-dark">
|
|
<h1 class="title">Radio Buttons</h1>
|
|
</header>
|
|
|
|
<header class="bar bar-footer bar-dark">
|
|
<h1 class="title">Footer</h1>
|
|
</header>
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<div class="content has-header">
|
|
|
|
<div class="radio-buttton-list">
|
|
|
|
<label class="list-item">
|
|
<input type="radio" name="serverside" value="go" checked>
|
|
<div class="list-item-content">
|
|
Go
|
|
</div>
|
|
<div class="list-item-icon icon-checkmark"></div>
|
|
</label>
|
|
|
|
<label class="list-item">
|
|
<input type="radio" name="serverside" value="python">
|
|
<div class="list-item-content">
|
|
Python
|
|
</div>
|
|
<div class="list-item-icon icon-checkmark"></div>
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="padding">
|
|
<p><a class="button button-secondary" href="index.html">Homepage</a></p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|